Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.3ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("audit_logs")  (0.2ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.2ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.3ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("file_assets")  (0.2ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.3ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (3.0ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.3ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.3ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.1ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.3ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.3ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.3ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.1ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (1.6ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("preferences")  (0.3ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.3ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.3ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.3ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.3ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.3ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.6ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.2ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.2ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.2ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.1ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.2ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.0ms) begin transaction  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (2.0ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.8ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.9ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.5ms) commit transaction  (3.1ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.1ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.1ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) select sqlite_version(*)  (2.7ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (2.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.3ms) select max(version) as current_version from data_migrations  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (52.4ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:07 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 13:57:07 UTC +00:00]]  (2.8ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110525001935')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (54.9ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.8ms) commit transaction  (2.8ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 13:57:08 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (9.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:09 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 13:57:09 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:09 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:09 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 13:57:09.948328', "updated_at" = '2012-06-05 13:57:09.948328' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["crypted_password", "$2a$10$nKg0hgPh3RExXCiqKbQqHuib4gg6nSIzOmdyOmFyW1QvahTBf3NQi"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["username", "admin1"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (4.6ms) Sent mail to user1@portablemind.com (92ms) Date: Tue, 05 Jun 2012 09:57:10 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce10368ec80_d77781c8ef4840985@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 13:57:10.754023' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 13:57:10.762152' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 13:57:10.763796' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 13:57:10.800437' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 13:57:10.802212' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 13:57:10.822853' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 13:57:10.828048' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.3ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 13:57:10.914238' WHERE "users"."id" = 1 Completed 200 OK in 16ms (Views: 2.2ms | ActiveRecord: 1.1ms)  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 13:57:10.952302', "updated_at" = '2012-06-05 13:57:10.952302' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 13:57:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["crypted_password", "$2a$10$4exHdMeD1ZhwEZchlm9M.eYlfgBWjquXJp4WXGrZCKjGkqxHEJcCW"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 09:57:11 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce103713d42_d77781c8ef48410f7@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 13:57:11.103237' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 13:57:11.111068' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 13:57:11.112329' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 13:57:11.122632' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 13:57:11.124134' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 13:57:11.127702' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 13:57:11.130947' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 13:57:11.144296', "updated_at" = '2012-06-05 13:57:11.144296' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["crypted_password", "$2a$10$8QqJTiYD0H/NPnbRJD5a/eWggV1/TdCgI/dMTd9VMRZWS0Hmk3GUO"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 09:57:11 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce103742856_d77781c8ef4841173@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 13:57:11.293607' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 13:57:11.300397' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 13:57:11.301604' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 13:57:11.313218' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 13:57:11.314855' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 13:57:11.318372' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 13:57:11.321308' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 13:57:11.326754' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 13:57:11.341099', "updated_at" = '2012-06-05 13:57:11.341099' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (63.5ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["crypted_password", "$2a$10$2ZVF4.LKVllbSCEY09Yiu.J9br4Uf/OoxkfqQZvg8Pdyxy51B48lu"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["username", "admin4"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]] Sent mail to user4@portablemind.com (13ms) Date: Tue, 05 Jun 2012 09:57:11 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce10378271e_d77781c8ef48412a0@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 13:57:11.555698' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 13:57:11.562356' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 13:57:11.563545' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 13:57:11.574024' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 13:57:11.575250' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 13:57:11.578569' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 13:57:11.581388' WHERE "users"."id" = 1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 13:57:11.708145' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 13:57:11.888483', "updated_at" = '2012-06-05 13:57:11.888483' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 13:57:11.944966', "updated_at" = '2012-06-05 13:57:11.944966' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 13:57:11.977758', "updated_at" = '2012-06-05 13:57:11.977758' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:11 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 13:57:11.996258', "updated_at" = '2012-06-05 13:57:11.996258' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 13:57:12.059365', "updated_at" = '2012-06-05 13:57:12.059365' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["user_id", nil]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (2.9ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]]  (3.2ms) commit transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["username", "employee_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 13:57:12 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.8ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (2.9ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (2.0ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.4ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.2ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.1ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.9ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.3ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.4ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.4ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.3ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.3ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.5ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.7ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.5ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.7ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.0ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.9ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.8ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.6ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.7ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.9ms) commit transaction  (3.2ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.1ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.1ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.7ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (2.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.3ms) select max(version) as current_version from data_migrations  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (6.8ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:27 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 17:53:27 UTC +00:00]]  (2.4ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20110525001935')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.8ms) commit transaction  (2.6ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["value", "blue.gif"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:53:28 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (10.3ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:29 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:53:29 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:29 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:29 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:53:29.675554', "updated_at" = '2012-06-05 17:53:29.675554' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:29 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:29 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:29 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:53:29 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:53:29 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:29 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:53:29 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:53:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["crypted_password", "$2a$10$Knb8AKCGHp31hUW4VZTx.u8MW6r1TBj8oKJTvYIlwRHt.cLduvWZu"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["username", "admin1"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (26.6ms) Sent mail to user1@portablemind.com (92ms) Date: Tue, 05 Jun 2012 13:53:30 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce479a6a200_ec01816acb2091649@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:53:30.551040' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:53:30.559398' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:53:30.561089' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:53:30.655950' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:53:30.657774' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:53:30.677685' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 17:53:30.682115' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.3ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 17:53:30.710752' WHERE "users"."id" = 1 Completed 200 OK in 16ms (Views: 2.1ms | ActiveRecord: 1.0ms)  (1.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:53:30.766008', "updated_at" = '2012-06-05 17:53:30.766008' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["crypted_password", "$2a$10$NI3.SO823EuFc.g2pHgaEePXApGXZtk1LECSF5NS9hAYhy5aaN7Ny"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00]] Sent mail to user2@portablemind.com (14ms) Date: Tue, 05 Jun 2012 13:53:30 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce479adb5bf_ec01816acb209176c@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:53:30.921333' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:53:30.928054' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:53:30.929290' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:53:30.939264' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:53:30.940526' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:53:30.943935' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 17:53:30.946784' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 0ms  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:53:30.960035', "updated_at" = '2012-06-05 17:53:30.960035' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["crypted_password", "$2a$10$G9BUdTTcG5E7jvBLokD63Oen9wbENTdjxFAxPOBaifUvcJQ.xQ6V2"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 13:53:31 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce479b25b33_ec01816acb20918b1@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:53:31.175509' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:53:31.182271' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:53:31.183526' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:53:31.193575' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:53:31.194845' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:53:31.198246' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 17:53:31.201264' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 17:53:31.206408' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["weight", 180]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:53:31.221630', "updated_at" = '2012-06-05 17:53:31.221630' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["crypted_password", "$2a$10$oYi7oLfC3HfVhx4wruyg1.KoWD3FUDvdD93OdhzWnwVTh/LgmPmiG"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]] Sent mail to user4@portablemind.com (15ms) Date: Tue, 05 Jun 2012 13:53:31 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce479b55fb3_ec01816acb2091955@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:53:31.374876' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:53:31.381571' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:53:31.382760' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:53:31.392711' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:53:31.393961' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:53:31.397260' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 17:53:31.400126' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 17:53:31.598725' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.9ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:53:31.719620', "updated_at" = '2012-06-05 17:53:31.719620' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (1.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:53:31.764921', "updated_at" = '2012-06-05 17:53:31.764921' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["weight", 180]] SQL (64.9ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:53:31.800830', "updated_at" = '2012-06-05 17:53:31.800830' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:53:31.885960', "updated_at" = '2012-06-05 17:53:31.885960' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.2ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:53:31.956053', "updated_at" = '2012-06-05 17:53:31.956053' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:53:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00]]  (1.7ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00]]  (2.9ms) commit transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.2ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (1.0ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00]] SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:53:32 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.3ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.0ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.8ms) commit transaction Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.0ms) PRAGMA index_list("schema_migrations")  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("users")  (1.6ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.2ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.1ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.2ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.2ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.2ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.3ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.2ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (1.4ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.2ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.3ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.1ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.3ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.1ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.3ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.4ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.3ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.3ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.3ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.1ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.9ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.5ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.2ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.1ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.8ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.7ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.6ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.7ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.7ms) commit transaction  (3.2ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.1ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.1ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) select sqlite_version(*)  (2.4ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.9ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (7.0ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:16 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 17:59:16 UTC +00:00]]  (2.3ms) commit transaction  (6.0ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.2ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.6ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["value", "planet.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["value", "portablemind.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:17 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (60.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:18 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:18 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:18 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:18 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:18.906622', "updated_at" = '2012-06-05 17:59:18.906622' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["crypted_password", "$2a$10$5txokllzhI3la4DbnCE/qu6/QtGez7mKf8Bs7PkgrMTL/rulVm.MW"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["username", "admin1"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (4.8ms) Sent mail to user1@portablemind.com (89ms) Date: Tue, 05 Jun 2012 13:59:19 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce48f78adbf_ec9d816c3f78916e3@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:19.686012' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:19.752363' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:19.754310' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:19.791019' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:19.792859' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:19.812887' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 17:59:19.817703' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 17:59:19.847420' WHERE "users"."id" = 1 Completed 200 OK in 16ms (Views: 2.5ms | ActiveRecord: 1.1ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:19.858273', "updated_at" = '2012-06-05 17:59:19.858273' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["crypted_password", "$2a$10$5OHPHldAr8kbasznPMEgaOropdz4jAlCm9XMLgYZvKXWxvyjQ6LPa"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:59:19 UTC +00:00]] Sent mail to user2@portablemind.com (14ms) Date: Tue, 05 Jun 2012 13:59:19 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce48f7f174c_ec9d816c3f78917ca@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:20.011358' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:20.018110' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:20.019332' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:20.030218' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:20.031649' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:20.035075' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 17:59:20.037997' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 0ms  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["weight", 180]] SQL (60.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:20.051898', "updated_at" = '2012-06-05 17:59:20.051898' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["crypted_password", "$2a$10$S.5nfhvzDzuwDpT008OfX.cucUs91U07Dl3IWJv7H6VjWRzaHnWIW"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 13:59:20 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce48f83b68b_ec9d816c3f78918c1@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:20.265940' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:20.272587' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:20.273917' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:20.283826' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:20.285065' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:20.288681' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 17:59:20.291608' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 17:59:20.296679' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 0.7ms | ActiveRecord: 0.4ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:20.310348', "updated_at" = '2012-06-05 17:59:20.310348' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["crypted_password", "$2a$10$TN/ssmyIrLHuqrDUwCHcmuBxJLb.857Hz8AWlVZybHzGMuqQpPnAy"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["username", "admin4"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]] Sent mail to user4@portablemind.com (14ms) Date: Tue, 05 Jun 2012 13:59:20 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce48f86b439_ec9d816c3f78919c0@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:20.461640' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:20.469208' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:20.470918' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:20.481333' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:20.482688' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:20.486185' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 17:59:20.489102' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 17:59:20.688515' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:20.806404', "updated_at" = '2012-06-05 17:59:20.806404' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:20.850101', "updated_at" = '2012-06-05 17:59:20.850101' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.3ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:20.961202', "updated_at" = '2012-06-05 17:59:20.961202' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["weight", 180]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:20 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:20.994470', "updated_at" = '2012-06-05 17:59:20.994470' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (3.3ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.2ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:21.203771', "updated_at" = '2012-06-05 17:59:21.203771' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.7ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (2.3ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]]  (3.6ms) commit transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (1.1ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (1.0ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:21 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.4ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.0ms) commit transaction User Load (0.5ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (2.0ms) commit transaction Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.7ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.3ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.3ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.1ms) PRAGMA index_info('index_geo_countries_on_name')  (0.6ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.3ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.3ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.1ms) PRAGMA index_list("notes")  (0.1ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.3ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.1ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (3.9ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.3ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.3ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.3ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.9ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.8ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.3ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.3ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.5ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.2ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (2.1ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.8ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.7ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.7ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.7ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.4ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.1ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.1ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (3.2ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (3.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.3ms) select max(version) as current_version from data_migrations  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (7.3ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]]  (2.3ms) commit transaction  (2.7ms) insert into data_migrations (version) values ('20110525001935')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (3.1ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 17:59:54 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:55 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (62.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:56.031872', "updated_at" = '2012-06-05 17:59:56.031872' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["crypted_password", "$2a$10$H3/3bATEEFmWVQEflo8bzufvrn/VWghjkFGO1W0qfrEfzXymgEFNW"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["username", "admin1"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (5.4ms) Sent mail to user1@portablemind.com (90ms) Date: Tue, 05 Jun 2012 13:59:56 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce491cacb9a_ecad818f385c91633@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:56.881481' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:56.891024' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:56.893260' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:56.930180' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:56.931995' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:56.952396' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 17:59:56.956940' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.3ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 17:59:56.985033' WHERE "users"."id" = 1 Completed 200 OK in 15ms (Views: 2.2ms | ActiveRecord: 1.0ms)  (2.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:56 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:56.997793', "updated_at" = '2012-06-05 17:59:56.997793' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["crypted_password", "$2a$10$2ICP1laXyeNr9vHPEkfc9OPIIShtd2B.ltO90g04spZE1SjaJvCwm"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 13:59:57 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce491d1f192_ecad818f385c9178d@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:57.148799' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:57.155633' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:57.156858' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:57.167103' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:57.168379' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:57.171745' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 17:59:57.174588' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 0ms  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:57.187377', "updated_at" = '2012-06-05 17:59:57.187377' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["crypted_password", "$2a$10$WOnuJCWNFfbYvkecQ/X3ZeLLYbJyOefvkjqQTjpDWk3Coiesg7Lui"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 13:59:57 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce491d5d261_ecad818f385c9181c@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:57.402739' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:57.410973' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:57.412501' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:57.422835' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:57.424121' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:57.427616' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 17:59:57.431166' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 17:59:57.436430' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 0.7ms | ActiveRecord: 0.4ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:57.450415', "updated_at" = '2012-06-05 17:59:57.450415' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["crypted_password", "$2a$10$UoHwDf8AppH20z98.sc4W.QtMUYrlEF8GwRS2PkaLYJWqMmJpkXvm"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]] Sent mail to user4@portablemind.com (14ms) Date: Tue, 05 Jun 2012 13:59:57 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce491d8d778_ecad818f385c919c3@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:57.601857' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:57.608861' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:57.610095' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 17:59:57.622178' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:57.623766' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 17:59:57.627642' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 17:59:57.630552' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 17:59:57.827840' WHERE "users"."id" = 1 Completed 200 OK in 6ms (Views: 1.1ms | ActiveRecord: 0.2ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:57.943108', "updated_at" = '2012-06-05 17:59:57.943108' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.3ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.9ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:57.986525', "updated_at" = '2012-06-05 17:59:57.986525' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (65.1ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:58.087919', "updated_at" = '2012-06-05 17:59:58.087919' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:58.107300', "updated_at" = '2012-06-05 17:59:58.107300' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 17:59:58.178068', "updated_at" = '2012-06-05 17:59:58.178068' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["value", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (2.1ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]]  (3.2ms) commit transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 17:59:58 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.1ms) commit transaction User Load (0.5ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.8ms) commit transaction Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.2ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.8ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.3ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.1ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.1ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.1ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.3ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.3ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.4ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) PRAGMA index_list("preferences")  (0.3ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.1ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.6ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.1ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.3ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.3ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.3ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (4.0ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.8ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.6ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.0ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.8ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.7ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.3ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.8ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.8ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.1ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.4ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (2.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (7.3ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:47 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 18:00:47 UTC +00:00]]  (2.6ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20110525001935')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (1.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.9ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (1.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (2.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.9ms) commit transaction  (2.6ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["value", "blue.gif"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["value", "purple.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["value", "planet.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:00:48 UTC +00:00], ["value", "ext-all.css"]]  (0.3ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (1.0ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (68.3ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:00:49 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:49 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:00:49.599049', "updated_at" = '2012-06-05 18:00:49.599049' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:49 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:49 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:00:49 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:00:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:49 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:00:49 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:00:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["crypted_password", "$2a$10$tO0126cN8EqpyKFI13T8penMZIzm.s4roLgP8WRn2WZvVpIfrg5iS"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["username", "admin1"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (5.0ms) Sent mail to user1@portablemind.com (88ms) Date: Tue, 05 Jun 2012 14:00:50 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce495249297_ecc580b6071c916e1@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:00:50.476208' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:00:50.484571' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:00:50.486232' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:00:50.522905' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:00:50.525137' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:00:50.546522' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:00:50.550919' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.3ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:00:50.577966' WHERE "users"."id" = 1 Completed 200 OK in 14ms (Views: 2.0ms | ActiveRecord: 1.0ms)  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:00:50.588480', "updated_at" = '2012-06-05 18:00:50.588480' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["crypted_password", "$2a$10$gGuyZjVj7mJngxiiLWGjNegjAPOvnZfow2./auJ86z3hiJFpv0jey"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]] Sent mail to user2@portablemind.com (15ms) Date: Tue, 05 Jun 2012 14:00:50 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce4952afa79_ecc580b6071c91791@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:00:50.743599' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:00:50.750926' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:00:50.752217' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:00:50.762086' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:00:50.763342' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:00:50.766914' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:00:50.769922' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 0ms  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:00:50.844365', "updated_at" = '2012-06-05 18:00:50.844365' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["crypted_password", "$2a$10$y1/tUDfQgi17ZgqnwDkHQevB57r/JsEFrdy8O5mhfP6T5kTpR7cYa"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:00:50 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce4952ee1a8_ecc580b6071c9183f@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:50 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:00:50.996665' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:00:51.003317' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:00:51.004594' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:00:51.014613' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:00:51.015841' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:00:51.019227' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:00:51.022313' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:00:51.027404' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 0.7ms | ActiveRecord: 0.4ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:00:51.041412', "updated_at" = '2012-06-05 18:00:51.041412' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["crypted_password", "$2a$10$AODXZlLFiMs7Vue4XgfcEulrQ2sxF2v7P0Vfy2GOeQCgghHZxrQOC"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]] Sent mail to user4@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:00:51 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce49532aa99_ecc580b6071c91927@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:00:51.196067' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:00:51.202779' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:00:51.204034' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:00:51.214416' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:00:51.215661' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:00:51.219080' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:00:51.221980' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:00:51.419736' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.8ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:00:51.538120', "updated_at" = '2012-06-05 18:00:51.538120' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:00:51.583407', "updated_at" = '2012-06-05 18:00:51.583407' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:00:51.687029', "updated_at" = '2012-06-05 18:00:51.687029' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:00:51.705699', "updated_at" = '2012-06-05 18:00:51.705699' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (1.1ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (1.8ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:00:51.774170', "updated_at" = '2012-06-05 18:00:51.774170' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (1.9ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]]  (3.5ms) commit transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (1.1ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:51 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:52 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:00:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:00:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:00:52 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:00:52 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:52 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:00:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:00:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:00:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.3ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.2ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.6ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.4ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.1ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.1ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.3ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.1ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.3ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (4.2ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.9ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.3ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.1ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.6ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.9ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.3ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.3ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.7ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (2.1ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.9ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.6ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.8ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (7.4ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:44 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 18:49:44 UTC +00:00]]  (2.0ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20110525001935')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.6ms) commit transaction  (3.1ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["value", "blue.gif"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:49:45 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (9.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:46 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:49:46 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:46 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:46 UTC +00:00]]  (1.1ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:49:46.659843', "updated_at" = '2012-06-05 18:49:46.659843' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:46 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:46 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:46 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:49:46 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:46 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:49:46 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:46 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:49:46 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:46 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:49:46 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["crypted_password", "$2a$10$/kNUn6bsXSC/WjjTo.k4JO3DgNwkL0YqSxIcKp2MfXifQUnC0dQ5O"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["username", "admin1"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (4.4ms) Sent mail to user1@portablemind.com (90ms) Date: Tue, 05 Jun 2012 14:49:47 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce54cb66262_f1f4805d5914873ed@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:49:47.537902' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:49:47.546266' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:49:47.547894' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:49:47.642065' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:49:47.643881' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:49:47.663933' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:49:47.668348' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:49:47.695794' WHERE "users"."id" = 1 Completed 200 OK in 15ms (Views: 2.1ms | ActiveRecord: 1.0ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00]]  (15.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:49:47.706455', "updated_at" = '2012-06-05 18:49:47.706455' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (1.2ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["crypted_password", "$2a$10$vYGVFeQHrQN784AFutYG9.vH.3Haii4F3MQeLlpX8NfohnhlsrP02"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["username", "admin2"]] SQL (0.6ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00]] Sent mail to user2@portablemind.com (16ms) Date: Tue, 05 Jun 2012 14:49:47 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce54cbdb4e2_f1f4805d5914874ab@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:49:47.924547' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:47 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:49:47.934102' WHERE "user_preferences"."id" = 2  (360.0ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:49:47.935874' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:49:48.310825' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:49:48.312487' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:49:48.316507' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:49:48.319507' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["weight", 180]] SQL (1.0ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:49:48.362102', "updated_at" = '2012-06-05 18:49:48.362102' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["crypted_password", "$2a$10$lymfe8zE1cs2qzEeL22YdOfTD/oNKQM8qCI4nCWHGJTLP6rw8gsjS"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:49:48 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce54cc873d6_f1f4805d5914875c0@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:49:48.575686' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:49:48.582491' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:49:48.583767' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:49:48.594065' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:49:48.595300' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:49:48.598690' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:49:48.601560' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:49:48.606737' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 0.7ms | ActiveRecord: 0.4ms)  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:49:48.621078', "updated_at" = '2012-06-05 18:49:48.621078' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["crypted_password", "$2a$10$J9OIjBaKY.wrp3b5ypeLyedVDRhjOfhaOETONWapu7qVirv/i28lG"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["username", "admin4"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]] Sent mail to user4@portablemind.com (15ms) Date: Tue, 05 Jun 2012 14:49:48 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce54ccb6fc1_f1f4805d59148766e@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:49:48.773014' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.5ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:49:48.783714' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:49:48.784995' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:49:48.796839' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:49:48.798165' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:49:48.801594' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:49:48.804665' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:49:48 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:49:49.003038' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:49:49.116427', "updated_at" = '2012-06-05 18:49:49.116427' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:49:49.159073', "updated_at" = '2012-06-05 18:49:49.159073' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["weight", 180]] SQL (64.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:49:49.195594', "updated_at" = '2012-06-05 18:49:49.195594' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:49:49.279650', "updated_at" = '2012-06-05 18:49:49.279650' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:49:49.348772', "updated_at" = '2012-06-05 18:49:49.348772' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["value", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (2.3ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]]  (3.1ms) commit transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:49:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.8ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.3ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.4ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (2.0ms) commit transaction Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.2ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.1ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.7ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.1ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.1ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.1ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.3ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.1ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.3ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.5ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.3ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.1ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (4.4ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.8ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.3ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.0ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (2.2ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.2ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.9ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.8ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.2ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (2.5ms) commit transaction  (3.1ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.1ms) PRAGMA index_list("applications_widgets")  (0.1ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.1ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.1ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.1ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (7.3ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:10 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 18:51:10 UTC +00:00]]  (2.5ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:10 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:10 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:10 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:10 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:10 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:10 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:10 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:10 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:10 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.7ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["value", "blue.gif"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:51:11 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (61.1ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:51:12.379871', "updated_at" = '2012-06-05 18:51:12.379871' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00], ["crypted_password", "$2a$10$LjA1klE2Q5ldgrgzObtFeeBvRlGEm5hjOPR.d6Q.kIihKtL9knHue"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00], ["username", "admin1"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:51:12 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (4.2ms) Sent mail to user1@portablemind.com (88ms) Date: Tue, 05 Jun 2012 14:51:13 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce5521133be_f21c805eb4d0873a4@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:51:13.194029' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] SQL (55.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:51:13.258338' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:51:13.260401' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:51:13.296919' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:51:13.298703' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:51:13.318763' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:51:13.323183' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:51:13.350075' WHERE "users"."id" = 1 Completed 200 OK in 14ms (Views: 2.0ms | ActiveRecord: 1.0ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:51:13.360551', "updated_at" = '2012-06-05 18:51:13.360551' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["crypted_password", "$2a$10$tbqcqQ3Qp/Ymh/FQ4RD7K.bI90P0wYJ126pQGBkzXtHXcAuX8yQ/6"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["username", "admin2"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:51:13 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce55217777c_f21c805eb4d0874ba@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:51:13.510584' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:51:13.517467' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:51:13.518725' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:51:13.528804' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:51:13.530043' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:51:13.533419' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:51:13.536255' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:51:13.549421', "updated_at" = '2012-06-05 18:51:13.549421' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["crypted_password", "$2a$10$c4KuFiAdMS33/QP95ZlHWuEUjycRxxcSrdmgbA5/JVbknIPZs7UVG"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:51:13 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce5521b4948_f21c805eb4d08756@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:51:13.761635' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:51:13.768447' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:51:13.769750' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:51:13.780213' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:51:13.781454' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:51:13.784881' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:51:13.788196' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:51:13.793605' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:51:13.807498', "updated_at" = '2012-06-05 18:51:13.807498' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["crypted_password", "$2a$10$.GdKVW3y.BbhFPdGE5YB1ux/p56rnHFFOmHjIomiJaq8TFCEstRAy"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["username", "admin4"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] Sent mail to user4@portablemind.com (14ms) Date: Tue, 05 Jun 2012 14:51:13 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce5521e4c46_f21c805eb4d0876db@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:51:13.959495' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:51:13.966251' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:51:13.967463' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:51:13.977630' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:51:13.978909' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:51:13 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:51:13.982328' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:51:13.985176' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (61.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:51:14.180293' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:51:14.294785', "updated_at" = '2012-06-05 18:51:14.294785' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:51:14.338243', "updated_at" = '2012-06-05 18:51:14.338243' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (63.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:51:14.373661', "updated_at" = '2012-06-05 18:51:14.373661' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:51:14.457403', "updated_at" = '2012-06-05 18:51:14.457403' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:51:14.525914', "updated_at" = '2012-06-05 18:51:14.525914' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.9ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["value", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (2.5ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]]  (3.4ms) commit transaction  (0.2ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.2ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:51:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction Widget Load (0.4ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.0ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.9ms) commit transaction Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.1ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (3.1ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.3ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (4.2ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.9ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.4ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (1.9ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.9ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.7ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (2.4ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.5ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.7ms) commit transaction  (3.2ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.3ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (6.7ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00]]  (2.9ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20110525001935')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:46 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (38.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (3.6ms) commit transaction  (3.1ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:54:47 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (60.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:54:48.379888', "updated_at" = '2012-06-05 18:54:48.379888' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00], ["crypted_password", "$2a$10$hH4xmWNVRiXxWl1eORD9nOqA.i0FsA4I6gEcyikyjW69TBQS3spwq"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:54:48 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (4.5ms) Sent mail to user1@portablemind.com (87ms) Date: Tue, 05 Jun 2012 14:54:49 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce55f9a420_f27081bfb43c873ce@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:54:49.160091' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:54:49.224889' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:54:49.226863' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:54:49.263755' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:54:49.265533' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:54:49.285995' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:54:49.290220' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:54:49.317525' WHERE "users"."id" = 1 Completed 200 OK in 14ms (Views: 2.0ms | ActiveRecord: 1.0ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:54:49.328461', "updated_at" = '2012-06-05 18:54:49.328461' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["crypted_password", "$2a$10$Fh8NW.h44ccxTpKEdVsnpee7BHVcETMid5bhRHg3gsTzLxtu3uvAW"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["username", "admin2"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:54:49 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce55f96feff_f27081bfb43c8741f@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:54:49.479831' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:54:49.486539' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:54:49.487843' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:54:49.498169' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:54:49.499437' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:54:49.502863' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:54:49.505863' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 0ms  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["weight", 180]] SQL (60.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:54:49.518714', "updated_at" = '2012-06-05 18:54:49.518714' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["crypted_password", "$2a$10$WX1uofD7a2b6jGs2RVrD8.WTc1i771yZtmTgJzpFHg0v7ZJXHVddC"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:54:49 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce55f9ad254_f27081bfb43c875fa@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:54:49.730604' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:54:49.737299' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:54:49.738519' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:54:49.748672' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:54:49.749969' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:54:49.754169' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:54:49.757149' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:54:49.762439' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:54:49.776375', "updated_at" = '2012-06-05 18:54:49.776375' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["crypted_password", "$2a$10$CfUFIAtmhpJeenbgb8U.XeHJ38f5Y5qa0sxDu885Qw3TMeIXdloCS"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["username", "admin4"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] Sent mail to user4@portablemind.com (14ms) Date: Tue, 05 Jun 2012 14:54:49 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce55f9dd2be_f27081bfb43c876c2@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:54:49.928120' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:54:49.935183' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:54:49.936572' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:54:49.946690' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:54:49.947942' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:54:49.951539' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:54:49.954731' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:54:50.149521' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 1.0ms | ActiveRecord: 0.2ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:54:50.265285', "updated_at" = '2012-06-05 18:54:50.265285' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:54:50.307679', "updated_at" = '2012-06-05 18:54:50.307679' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:54:50.406771', "updated_at" = '2012-06-05 18:54:50.406771' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:54:50.425950', "updated_at" = '2012-06-05 18:54:50.425950' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (1.1ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:54:50.494936', "updated_at" = '2012-06-05 18:54:50.494936' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["value", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.2ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (2.5ms) commit transaction  (0.1ms) begin transaction  (0.1ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]]  (3.5ms) commit transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:54:50 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (2.8ms) commit transaction User Load (0.6ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.8ms) commit transaction Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.1ms) begin transaction  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("users")  (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.1ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.2ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.3ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.2ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.3ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.2ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.3ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.1ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.3ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.3ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.3ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.3ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.6ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.4ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.3ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.3ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("currencies")  (0.3ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.3ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.3ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.3ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.3ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.5ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.5ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.0ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.9ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (1.8ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.7ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.4ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.7ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.9ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.8ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.1ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.2ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (7.4ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00]]  (2.9ms) commit transaction  (2.8ms) insert into data_migrations (version) values ('20110525001935')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.2ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (38.9ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:28 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (4.1ms) commit transaction  (2.6ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.8ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["value", "purple.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:55:29 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (62.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:55:30.291204', "updated_at" = '2012-06-05 18:55:30.291204' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["crypted_password", "$2a$10$QCMMtD9EX0qMsf.4lavAXOYJ6xPBkRkw1hQhPyxRiXKvkzI.jLr2a"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["username", "admin1"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (4.9ms) Sent mail to user1@portablemind.com (89ms) Date: Tue, 05 Jun 2012 14:55:30 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce5622e75b8_f28281b4efac873a@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:55:30 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:55:31.120214' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:55:31.128915' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:55:31.130578' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:55:31.167247' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:55:31.169026' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:55:31.188871' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:55:31.193152' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:55:31.220353' WHERE "users"."id" = 1 Completed 200 OK in 14ms (Views: 2.0ms | ActiveRecord: 1.0ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:55:31.230927', "updated_at" = '2012-06-05 18:55:31.230927' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["crypted_password", "$2a$10$63B7/Q4jGZptA3NjLygSfeLtRU43nXdde3cSU71X7SomU1H3XHWU2"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] Sent mail to user2@portablemind.com (14ms) Date: Tue, 05 Jun 2012 14:55:31 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce562357d3f_f28281b4efac8748d@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:55:31.381697' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:55:31.388445' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:55:31.389705' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:55:31.399925' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:55:31.401181' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:55:31.404773' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:55:31.407711' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 0ms  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:55:31.420661', "updated_at" = '2012-06-05 18:55:31.420661' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["crypted_password", "$2a$10$j7yuQ92tJjahIc7lJtrFkePPbuRnj9kvmiTwJs5dsW7DXu.VAZSYW"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] Sent mail to user3@portablemind.com (14ms) Date: Tue, 05 Jun 2012 14:55:31 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce56239540b_f28281b4efac8755e@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:55:31.634160' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:55:31.640843' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:55:31.642064' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:55:31.652357' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:55:31.653622' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:55:31.656968' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:55:31.659751' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:55:31.664993' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms)  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:55:31.678740', "updated_at" = '2012-06-05 18:55:31.678740' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["crypted_password", "$2a$10$S6NHmSL4VfyXEgHyLTQaI.PoFV.Qwi7ailBmz5OCSAc60mPydGbu6"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] Sent mail to user4@portablemind.com (15ms) Date: Tue, 05 Jun 2012 14:55:31 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce5623c5252_f28281b4efac876cf@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:55:31.830138' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:55:31.836945' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:55:31.838197' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:55:31.848377' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:55:31.849745' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:55:31.853337' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:55:31.856426' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:55:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:55:32.053210' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:55:32.168224', "updated_at" = '2012-06-05 18:55:32.168224' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:55:32.211459', "updated_at" = '2012-06-05 18:55:32.211459' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (64.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:55:32.312038', "updated_at" = '2012-06-05 18:55:32.312038' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:55:32.331875', "updated_at" = '2012-06-05 18:55:32.331875' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:55:32.403100', "updated_at" = '2012-06-05 18:55:32.403100' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (2.5ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]]  (3.5ms) commit transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (1.0ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:55:32 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.0ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.8ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.2ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.6ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.1ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.1ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.1ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.1ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.1ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.4ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (4.6ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.9ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.6ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.7ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.5ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.6ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.8ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.8ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.6ms) commit transaction  (3.1ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.8ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (7.2ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00]]  (2.7ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (3.0ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 18:56:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (1.0ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:56:22 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (247.2ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:56:23.187362', "updated_at" = '2012-06-05 18:56:23.187362' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00], ["crypted_password", "$2a$10$jL3z09je1NcmUaaBiDqsheAhJICk6a5Ihgkg/5jr0rd9Wx/txCQCC"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:56:23 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (5.7ms) Sent mail to user1@portablemind.com (90ms) Date: Tue, 05 Jun 2012 14:56:24 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce565815573_f2a081710da0554f6@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:56:24.210323' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:56:24.218445' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:56:24.275876' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:56:24.313534' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:56:24.315383' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:56:24.335925' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:56:24.340294' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:56:24.369255' WHERE "users"."id" = 1 Completed 200 OK in 15ms (Views: 2.2ms | ActiveRecord: 1.1ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:56:24.380046', "updated_at" = '2012-06-05 18:56:24.380046' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["crypted_password", "$2a$10$o9QHcSz9PRtH1V7FOp8diOgQ/fdEkakI6BdEGePOYX/HW6hfv.HaK"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:56:24 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce56587cc4b_f2a081710da055566@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:56:24.534956' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:56:24.541840' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:56:24.543102' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:56:24.553950' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:56:24.555337' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:56:24.558787' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:56:24.561964' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:56:24.577247', "updated_at" = '2012-06-05 18:56:24.577247' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["crypted_password", "$2a$10$Z/tdlJPDU8jpIFe3pGy60OvL6Cwa/Ek1pxgKwlQhv73JN2EPg3Aee"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:56:24 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce5658bbe87_f2a081710da055664@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:56:24.793762' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:56:24.800646' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:56:24.801872' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:56:24.811958' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:56:24.813249' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:56:24.816765' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:56:24.819681' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:56:24.825542' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.5ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:56:24.841475', "updated_at" = '2012-06-05 18:56:24.841475' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["crypted_password", "$2a$10$ZlPAFtZgfnZgvV4amh2CYOUlVrR/gXQT6RPtnpHSneiDE0kw7u0Ra"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["username", "admin4"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]] Sent mail to user4@portablemind.com (15ms) Date: Tue, 05 Jun 2012 14:56:24 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce5658eceb0_f2a081710da0557cf@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:56:24.995619' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:56:24 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:56:25.002911' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:56:25.004810' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:56:25.014954' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:56:25.016163' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:56:25.019504' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:56:25.022502' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:56:25.221352' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.8ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["weight", 180]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:56:25.336998', "updated_at" = '2012-06-05 18:56:25.336998' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:56:25.380563', "updated_at" = '2012-06-05 18:56:25.380563' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:56:25.480718', "updated_at" = '2012-06-05 18:56:25.480718' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:56:25.500453', "updated_at" = '2012-06-05 18:56:25.500453' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:56:25.569405', "updated_at" = '2012-06-05 18:56:25.569405' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (2.4ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.7ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]]  (3.6ms) commit transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (1.0ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00]] SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:56:25 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (1.0ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.2ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.9ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.0ms) PRAGMA index_list("schema_migrations")  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.2ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.1ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.1ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.5ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.2ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (4.4ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (2.1ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.2ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.0ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.7ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.7ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.6ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.2ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.7ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.1ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.1ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.1ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.9ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (4.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (9.8ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:17 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 18:58:17 UTC +00:00]]  (2.0ms) commit transaction  (1.8ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (3.0ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 18:58:18 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["value", "yes"]] SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["value", "blue.gif"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (9.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:58:19 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:58:19.967693', "updated_at" = '2012-06-05 18:58:19.967693' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["crypted_password", "$2a$10$w4LgJgikajkq0MHu1XfNSurXMNHBex65Uk5Km2Ie0cger97rlQR0O"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["username", "admin1"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (4.5ms) Sent mail to user1@portablemind.com (91ms) Date: Tue, 05 Jun 2012 14:58:20 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce56cc9c82e_f2cc81b4013c77926@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:58:20.834807' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:58:20.842923' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:58:20.844533' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:58:20.880723' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:58:20.882511' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:58:20.903230' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:58:20.907713' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:58:20.936190' WHERE "users"."id" = 1 Completed 200 OK in 15ms (Views: 2.1ms | ActiveRecord: 1.0ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:58:20.946695', "updated_at" = '2012-06-05 18:58:20.946695' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:58:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["crypted_password", "$2a$10$TQ3ioddcdGllxwg5GQjTRO2SPYHWuYLTXa0bFyOIIcD.A1QREJyGK"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:58:21 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce56cd12842_f2cc81b4013c7801a@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:58:21.104381' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:58:21.111074' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:58:21.112289' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:58:21.122114' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:58:21.123470' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:58:21.127190' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:58:21.193545' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:58:21.208396', "updated_at" = '2012-06-05 18:58:21.208396' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["crypted_password", "$2a$10$vbfcsRj.l.gOkImgdYX2/eoWtZ0jkS18wynsDl5DQhpe4UaCsfgla"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:58:21 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce56cd52a13_f2cc81b4013c78191@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:58:21.367095' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:58:21.373622' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:58:21.374840' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:58:21.384729' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:58:21.385973' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:58:21.393421' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:58:21.397215' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:58:21.403993' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 0.7ms | ActiveRecord: 0.5ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:58:21.418020', "updated_at" = '2012-06-05 18:58:21.418020' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["crypted_password", "$2a$10$yYHQhkdSdfat/l3STQ43I.4SpU6rHOVJR9VFURan/MrtmRhNp/dKi"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]] Sent mail to user4@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:58:21 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce56cd85e99_f2cc81b4013c78281@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:58:21.577460' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:58:21.584068' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:58:21.585280' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:58:21.595683' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:58:21.596972' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:58:21.600756' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:58:21.604302' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:58:21.801574' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:58:21.915909', "updated_at" = '2012-06-05 18:58:21.915909' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:58:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:58:22.022713', "updated_at" = '2012-06-05 18:58:22.022713' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:58:22.059424', "updated_at" = '2012-06-05 18:58:22.059424' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:58:22.079005', "updated_at" = '2012-06-05 18:58:22.079005' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:58:22.146904', "updated_at" = '2012-06-05 18:58:22.146904' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["value", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (2.5ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]]  (3.2ms) commit transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (1.0ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00]] SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:58:22 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.1ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.7ms) commit transaction Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.8ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.3ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.3ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.2ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.3ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.3ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.3ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.1ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.4ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.7ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.2ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.1ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.9ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.4ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.8ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.6ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.7ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.1ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.1ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.3ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.1ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (6.6ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]]  (1.7ms) commit transaction  (1.5ms) insert into data_migrations (version) values ('20110525001935')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.9ms) commit transaction  (2.7ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.8ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 18:59:46 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:59:47 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (61.3ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:59:48.155055', "updated_at" = '2012-06-05 18:59:48.155055' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["crypted_password", "$2a$10$AYAEk9w08WIhAM0UAqqHWu1ihXT2bRrGJa8T937VSL7rNzQTYGqmy"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["username", "admin1"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (4.4ms) Sent mail to user1@portablemind.com (90ms) Date: Tue, 05 Jun 2012 14:59:48 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce5724c742b_f2f680b1ed1c779f6@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:59:48 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:59:49.010147' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:59:49.018320' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:59:49.019951' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:59:49.057178' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:59:49.058967' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:59:49.078928' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:59:49.083233' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:59:49.110521' WHERE "users"."id" = 1 Completed 200 OK in 14ms (Views: 2.1ms | ActiveRecord: 1.0ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:59:49.121248', "updated_at" = '2012-06-05 18:59:49.121248' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["crypted_password", "$2a$10$eCkXxoQ/uSjSokBgoMq6CeWRu0LUBJATo2l/tSvLrKRs56exJ2ke."], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:59:49 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce57253d632_f2f680b1ed1c7800@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:59:49.280142' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:59:49.287077' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:59:49.288405' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:59:49.362334' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:59:49.364075' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:59:49.367751' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:59:49.370601' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:59:49.384104', "updated_at" = '2012-06-05 18:59:49.384104' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["crypted_password", "$2a$10$OvIMXDIdN3DXS8ZzZC1IC.Jup8GJHrwgKiPsw0Xg5so5Gy0taOXIu"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["username", "admin3"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:59:49 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce57257dc5c_f2f680b1ed1c78119@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:59:49.543985' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:59:49.551293' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:59:49.552708' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:59:49.562675' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:59:49.563940' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:59:49.567529' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:59:49.571043' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:59:49.577539' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.5ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:59:49.592763', "updated_at" = '2012-06-05 18:59:49.592763' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["crypted_password", "$2a$10$yfpszL0ZPMiDLH4iFWfBE.wPWVa/3hKxEW5TfnpDEtJzc9h1mj9BK"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]] Sent mail to user4@portablemind.com (13ms) Date: Tue, 05 Jun 2012 14:59:49 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce5725b0db0_f2f680b1ed1c78245@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:59:49.754023' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:59:49.760940' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:59:49.762193' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 18:59:49.772266' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:59:49.773537' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 18:59:49.777352' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 18:59:49.780779' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.6ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 18:59:49.978378' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:49 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.9ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:59:50.105036', "updated_at" = '2012-06-05 18:59:50.105036' WHERE "individuals"."id" = 1 Party Load (68.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.7ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:59:50.216544', "updated_at" = '2012-06-05 18:59:50.216544' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:59:50.254633', "updated_at" = '2012-06-05 18:59:50.254633' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:59:50.275407', "updated_at" = '2012-06-05 18:59:50.275407' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 18:59:50.344660', "updated_at" = '2012-06-05 18:59:50.344660' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (2.7ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]]  (3.2ms) commit transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]] SQL (70.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 18:59:50 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (1.0ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.5ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (2.9ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.9ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("users")  (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.3ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("sessions")  (0.2ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.1ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.2ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.3ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("audit_logs")  (0.2ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.1ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.2ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.9ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.2ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.3ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (1.5ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.3ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.1ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.3ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.1ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.6ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.3ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (4.4ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.8ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.7ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.0ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.8ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.9ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.7ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.4ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.0ms) begin transaction  (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.4ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.1ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.1ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.1ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.7ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (2.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (9.7ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00]]  (2.6ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (39.6ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:48 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.9ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:03:49 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (8.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:03:50.369753', "updated_at" = '2012-06-05 19:03:50.369753' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00], ["crypted_password", "$2a$10$05zc7qgWKpZDPdGKM5i/oOvBe.lid3co7UtT1h.YS6ETgn1HObFy2"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:03:50 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (4.3ms) Sent mail to user1@portablemind.com (90ms) Date: Tue, 05 Jun 2012 15:03:51 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce58171568c_f3568075c788354df@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:03:51.281116' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:03:51.289256' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:03:51.290963' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:03:51.327418' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:03:51.329218' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:03:51.349435' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:03:51.353830' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:03:51.381875' WHERE "users"."id" = 1 Completed 200 OK in 15ms (Views: 2.1ms | ActiveRecord: 1.0ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:03:51.392507', "updated_at" = '2012-06-05 19:03:51.392507' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["crypted_password", "$2a$10$cpZyAF0orbdxQ8vUtLS39e.B2b0AW7Wktqew9ZM7sYMm7tQImizHa"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["username", "admin2"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:03:51 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce58177fa43_f3568075c788355b7@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:03:51.553009' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:03:51.559756' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:03:51.561017' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:03:51.571419' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:03:51.572743' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:03:51.640201' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:03:51.643349' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:03:51.656509', "updated_at" = '2012-06-05 19:03:51.656509' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["crypted_password", "$2a$10$On/oid8TuY6j.D2V5Mzbk.0vasftnKyelokjBDd3CpjhdpfyEoaOu"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:03:51 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce5817c02ca_f3568075c788356f0@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:03:51.816027' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:03:51.822697' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:03:51.823895' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:03:51.834084' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:03:51.835344' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:03:51.838764' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:03:51.842211' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:03:51.848441' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 1.0ms | ActiveRecord: 0.5ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:03:51.863726', "updated_at" = '2012-06-05 19:03:51.863726' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["crypted_password", "$2a$10$FXYZPznprRZ8RJorlXjCSueYe2.0e3R9CVjK49cG232hI2D8rH0PW"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["username", "admin4"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:03:51 UTC +00:00]] Sent mail to user4@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:03:51 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce5817f2cb6_f3568075c78835781@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:03:52.023347' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:03:52.029894' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:03:52.031155' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:03:52.041456' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:03:52.042811' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:03:52.046537' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:03:52.050387' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:03:52.246074' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:03:52.372866', "updated_at" = '2012-06-05 19:03:52.372866' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:03:52.484627', "updated_at" = '2012-06-05 19:03:52.484627' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["weight", 180]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:03:52.521166', "updated_at" = '2012-06-05 19:03:52.521166' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:03:52.542233', "updated_at" = '2012-06-05 19:03:52.542233' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:03:52.612375', "updated_at" = '2012-06-05 19:03:52.612375' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (2.1ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:03:52 UTC +00:00]]  (3.4ms) commit transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.2ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.9ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.1ms) begin transaction  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("users")  (0.6ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.3ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.2ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.2ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.3ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.2ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.2ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.3ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.8ms) PRAGMA index_list("secured_models")  (0.3ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.2ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.7ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.3ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.1ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.3ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (8.4ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.9ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.4ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.2ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.3ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.8ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.4ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.9ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.3ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (2.2ms) commit transaction  (3.1ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.1ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.3ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (9.3ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:11 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 19:05:11 UTC +00:00]]  (2.8ms) commit transaction  (6.8ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (55.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.7ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:12 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (8.2ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:05:13.478475', "updated_at" = '2012-06-05 19:05:13.478475' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.2ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (1.0ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00], ["crypted_password", "$2a$10$WdhxajaBB2XMhbjsMClMy.uhpWe98T8ZU7I4DoD36Zwoy4NwZqXIG"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:05:13 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (5.0ms) Sent mail to user1@portablemind.com (102ms) Date: Tue, 05 Jun 2012 15:05:14 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce586a38205_f37a81a98e8c592f1@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:14.429332' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:14.437859' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:14.439504' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:14.475736' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:14.477524' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:14.497601' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:05:14.502014' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:05:14.529392' WHERE "users"."id" = 1 Completed 200 OK in 15ms (Views: 2.1ms | ActiveRecord: 1.0ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]]  (0.8ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:05:14.543687', "updated_at" = '2012-06-05 19:05:14.543687' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["crypted_password", "$2a$10$AQcRFT5u5nC78u3UidNTYe3kJY7JnnJDQtye.B0jVALKhphQd7etO"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:05:14 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce586aa47a2_f37a81a98e8c59328@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:14.702553' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:14.709495' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:14.710747' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:14.720849' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:14.722135' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:14.726098' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:05:14.729671' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:05:14.806323', "updated_at" = '2012-06-05 19:05:14.806323' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["crypted_password", "$2a$10$9nscq05O/.E9MUUktMHelOv3KZDeJfnGtuG6vBur.wqIFdDT02MYK"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:05:14 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce586ae4df3_f37a81a98e8c5949d@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:14.966173' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:14.972911' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:14.974159' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:14.984347' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:14.985678' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:05:14 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:14.989281' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:05:14.992696' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:05:14.998912' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.5ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:05:15.014859', "updated_at" = '2012-06-05 19:05:15.014859' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["crypted_password", "$2a$10$t8nvVnsF0uTb2/txIPtGTOQLXcQIt3.8Ei1gDIJ2ZVMcWB4022HRS"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]] Sent mail to user4@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:05:15 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce586b23611_f37a81a98e8c5958e@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:15.173371' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:15.180109' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:15.181384' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:15.191560' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:15.192951' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:15.196675' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:05:15.200070' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:05:15.394773' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.8ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]] SQL (0.6ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.8ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:05:15.522801', "updated_at" = '2012-06-05 19:05:15.522801' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:05:15.636009', "updated_at" = '2012-06-05 19:05:15.636009' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["weight", 180]] SQL (0.7ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:05:15.672687', "updated_at" = '2012-06-05 19:05:15.672687' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:05:15.692657', "updated_at" = '2012-06-05 19:05:15.692657' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:05:15.763876', "updated_at" = '2012-06-05 19:05:15.763876' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.2ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (2.1ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.1ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (3.5ms) commit transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:05:15.978638', "updated_at" = '2012-06-05 19:05:15.978638' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "party 19"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:15 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user5@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin5' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["crypted_password", "$2a$10$k8yjjbxitFqmhqcM1.xBjuMUUiHKMmVmHzXTlPa2VUREbv.DTg.6u"], ["email", "user5@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["username", "admin5"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]] Sent mail to user5@portablemind.com (14ms) Date: Tue, 05 Jun 2012 15:05:16 -0400 From: notifications@noreply.com To: user5@portablemind.com Message-ID: <4fce586c2b042_f37a81a98e8c596a8@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin5

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin5, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:16.206170' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:16.213031' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:16.214441' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:16.224778' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:16.226107' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:16.231422' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:05:16.239076', "updated_at" = '2012-06-05 19:05:16.239076' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", "party 20"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user6@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin6' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["crypted_password", "$2a$10$paa7p3yeEAjdI.Xmp7bdCu6NQxxk7G7x1bHU9/W2Vu77FhiLtE0gK"], ["email", "user6@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["username", "admin6"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]] Sent mail to user6@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:05:16 -0400 From: notifications@noreply.com To: user6@portablemind.com Message-ID: <4fce586c5a96b_f37a81a98e8c5978@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin6

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin6, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:16.399391' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:16.406147' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:16.407378' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:16.417469' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:16.418767' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:16.422604' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:05:16.430775', "updated_at" = '2012-06-05 19:05:16.430775' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", "party 21"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user7@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin7' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["crypted_password", "$2a$10$J/rZb0of6FTBzRLxiSaAhej.HibpmLCmuduVDgNgc31x.D6USENC6"], ["email", "user7@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["username", "admin7"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]] Sent mail to user7@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:05:16 -0400 From: notifications@noreply.com To: user7@portablemind.com Message-ID: <4fce586c893f8_f37a81a98e8c59874@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin7

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin7, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:16.590930' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:16.597840' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:16.599098' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:05:16.609028' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:16.610392' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:05:16 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:05:16.613969' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.3ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (2.9ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.8ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("users")  (0.6ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.3ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.2ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.2ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.3ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.2ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.2ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.3ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.8ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.3ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.1ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.2ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.3ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.2ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.9ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.5ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.5ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (4.5ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.8ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.3ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.8ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (1.8ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (2.1ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.5ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.5ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (2.1ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.7ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.1ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.4ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.1ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.1ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.1ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.1ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.5ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (6.7ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:44 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 19:11:44 UTC +00:00]]  (2.5ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (55.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.7ms) commit transaction  (2.8ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:45 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.8ms) rollback transaction  (0.3ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (15.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:46 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:11:46 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:46 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:46 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:11:46.869627', "updated_at" = '2012-06-05 19:11:46.869627' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["crypted_password", "$2a$10$yNdyBZm2EJkY8qsPMfwp5.cCq2hu/qdQA1kA.PuoMWjmUWIpahYsu"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (6.3ms) Sent mail to user1@portablemind.com (88ms) Date: Tue, 05 Jun 2012 15:11:47 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce59f388c9b_f41481b6579825951@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:47.763892' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:47.772101' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:47.773766' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:47.810234' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:47.812067' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:47.832999' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:11:47.837405' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:11:47.866615' WHERE "users"."id" = 1 Completed 200 OK in 16ms (Views: 2.4ms | ActiveRecord: 1.2ms)  (1.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["weight", 180]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:11:47.878495', "updated_at" = '2012-06-05 19:11:47.878495' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["crypted_password", "$2a$10$ENwnoK5O8rp6BuK3Su31mu6o3iH/c6LuVbNM9.kpV7f/V0cH0Obdu"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:11:47 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:11:48 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce59f422ad_f41481b6579826031@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:48.037685' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:48.044438' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:48.045686' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:48.056038' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:48.057318' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:48.125424' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:11:48.128614' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:11:48.142640', "updated_at" = '2012-06-05 19:11:48.142640' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["crypted_password", "$2a$10$/lpengENFvf1iuTdWDzAbOkN3HtXa2adTCHChybzZN2mt/P5NBO1G"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]] Sent mail to user3@portablemind.com (20ms) Date: Tue, 05 Jun 2012 15:11:48 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce59f442e76_f41481b65798261f2@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:48.311617' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:48.318334' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:48.319571' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:48.329676' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:48.330958' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:48.334547' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:11:48.338042' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.3ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:11:48.344406' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.6ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:11:48.360764', "updated_at" = '2012-06-05 19:11:48.360764' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["crypted_password", "$2a$10$ujfqLyO2mUNNSDZBZFE.negvycC0dusPET.7i5PXmmR25Fpq4H6Oe"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["username", "admin4"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]] Sent mail to user4@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:11:48 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce59f4781e2_f41481b6579826280@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:48.520262' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:48.526968' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:48.528166' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:48.538732' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:48.540012' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:48.543570' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:11:48.546958' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:11:48.745352' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 1.0ms | ActiveRecord: 0.2ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.9ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:11:48.876944', "updated_at" = '2012-06-05 19:11:48.876944' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:11:48.988887', "updated_at" = '2012-06-05 19:11:48.988887' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["weight", 180]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:11:49.024933', "updated_at" = '2012-06-05 19:11:49.024933' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:11:49.046735', "updated_at" = '2012-06-05 19:11:49.046735' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:11:49.116824', "updated_at" = '2012-06-05 19:11:49.116824' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", nil]]  (0.4ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (2.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (3.2ms) commit transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:49.363625' WHERE "user_preferences"."id" = 1 PreferenceType Load (70.7ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:49.442749' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:49.444235' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:49.455356' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:49.456744' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:49.460320' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["username", "employee_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:49.520551' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:49.528221' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:49.529462' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:49.541596' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:49.542883' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:49.546306' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 4 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", 2]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:49.571834' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:49.578904' WHERE "user_preferences"."id" = 5  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 19:11:49.580173' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:49.590193' WHERE "user_preferences"."id" = 6  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 19:11:49.591512' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 19:11:49.594898' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (1.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.8ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:49.641533' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:49.648279' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:49.649504' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:11:49.659568' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:49.660834' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:11:49 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:11:49.664278' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (1.2ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.3ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (2.9ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (2.0ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.3ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.2ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.2ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.3ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.8ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.3ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.4ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.3ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.9ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (2.2ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.3ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.3ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.3ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (1.9ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.3ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.4ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (2.0ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.7ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.5ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.1ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (3.0ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.6ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (9.1ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00]]  (35.0ms) commit transaction  (13.2ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.3ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (1.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (1.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:26 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.9ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["value", "blue.gif"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:27 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (25.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:28 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:23:28 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:28 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:28 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:23:28.512893', "updated_at" = '2012-06-05 19:23:28.512893' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:28 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:28 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:28 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:28 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:28 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:28 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:28 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:28 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:28 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:28 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["crypted_password", "$2a$10$WL7ijy7ZPD/SXskLhxfqDe.jVUHEbyKygCUc49SkPDrCXZZzAar1G"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (5.5ms) Sent mail to user1@portablemind.com (113ms) Date: Tue, 05 Jun 2012 15:23:29 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce5cb16522b_f5308078eabc4491c@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:29.636846' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:29.645101' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:29.646778' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:29.683133' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:29.684992' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:29.706572' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (2.8ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:23:29.715216' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.3ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.3ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:23:29.750502' WHERE "users"."id" = 1 Completed 200 OK in 16ms (Views: 2.2ms | ActiveRecord: 1.2ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:23:29.761114', "updated_at" = '2012-06-05 19:23:29.761114' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["crypted_password", "$2a$10$t6P/D4wSTz7EFvz3.YA7bOqD3EzQv100uaV/dVHQ0dG4NI9I3COi6"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:23:29 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce5cb1da7f0_f5308078eabc450f7@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:29.924073' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:29 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:29.999681' WHERE "user_preferences"."id" = 2  (0.4ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:30.001811' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:30.015968' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:30.017508' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:30.021054' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:23:30.023974' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:23:30.037227', "updated_at" = '2012-06-05 19:23:30.037227' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["crypted_password", "$2a$10$a.nLvgQSek92Q7FMHzmqT.J81Y4pt6B39Mx8lmgdDulI3C07p4Fta"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:23:30 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce5cb22b50e_f5308078eabc45145@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:30.206202' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:30.213034' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:30.214289' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:30.224954' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:30.226317' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:30.230153' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:23:30.235688' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:23:30.241659' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:23:30.255253', "updated_at" = '2012-06-05 19:23:30.255253' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["crypted_password", "$2a$10$1YyuXi06UMQYwDS2dqvFnuFh4xQ8ZprIUnSsDKN5os/itlUsZSAGe"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]] Sent mail to user4@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:23:30 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce5cb25e212_f5308078eabc4526c@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.6ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:30.415481' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:30.422157' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:30.423411' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:30.433922' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:30.435204' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:30.439013' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:23:30.442421' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.5ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:23:30.655918' WHERE "users"."id" = 1 Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.5ms)  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:23:30.864094', "updated_at" = '2012-06-05 19:23:30.864094' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["weight", 180]] SQL (1.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:23:30.911517', "updated_at" = '2012-06-05 19:23:30.911517' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.4ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:23:30.958574', "updated_at" = '2012-06-05 19:23:30.958574' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:23:30.977377', "updated_at" = '2012-06-05 19:23:30.977377' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:23:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["weight", 180]] SQL (1.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:23:31.046562', "updated_at" = '2012-06-05 19:23:31.046562' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (2.3ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.7ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (3.5ms) commit transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"   (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:31.398191' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:31.405305' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:31.406605' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", 1]]  (0.4ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:31.417181' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:31.418884' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:31.423124' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:31.483115' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:31.490123' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:31.491335' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:31.502581' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:31.503895' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:31.507366' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 4 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:31.533950' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:31.540636' WHERE "user_preferences"."id" = 5  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 19:23:31.541919' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:31.553135' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 19:23:31.554463' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 19:23:31.557995' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:31.611008' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:31.618071' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:31.619316' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:23:31.629921' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:31.631250' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:23:31 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:23:31.635463' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.3ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.4ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.1ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.5ms) commit transaction Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.3ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.7ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.6ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.5ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.7ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.8ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.3ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.2ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.3ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.8ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.7ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.2ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.3ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.1ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.1ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.1ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.1ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.0ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (7.3ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:31 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 19:46:31 UTC +00:00]]  (2.3ms) commit transaction  (1.7ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (55.0ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (3.0ms) commit transaction  (3.0ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (1.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:32 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (69.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:33 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:46:33 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:33 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:33 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:46:33.725351', "updated_at" = '2012-06-05 19:46:33.725351' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:33 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:33 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:33 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:33 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:33 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:33 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:33 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (1.0ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["crypted_password", "$2a$10$qcT/QcyEc9Q9GKPxpZeN0OJbZgGzQQ62q31CwIi8lHUpK9muVNAEi"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["username", "admin1"]] SQL (0.6ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (5.4ms) Sent mail to user1@portablemind.com (115ms) Date: Tue, 05 Jun 2012 15:46:34 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce621a75a1d_f71b80795efc449e@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:34.707689' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:34.716308' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:34.717938' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:34.753848' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:34.755888' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:34.776503' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:46:34.780855' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.3ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:46:34.808648' WHERE "users"."id" = 1 Completed 200 OK in 15ms (Views: 2.1ms | ActiveRecord: 1.0ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:46:34.819342', "updated_at" = '2012-06-05 19:46:34.819342' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["crypted_password", "$2a$10$s1RFoBR9NZGhgUs7JgMvDekpor8Z3z74Xazwtaz1pFzrVYxowtQym"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:46:34 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce621ae82d8_f71b80795efc450d2@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:46:34 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:35.045097' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:35.052692' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:35.054023' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:35.064781' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:35.066092' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:35.069531' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:46:35.072354' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:46:35.085310', "updated_at" = '2012-06-05 19:46:35.085310' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["crypted_password", "$2a$10$XQgurdIawn82lyox6msi1uYrJpqo5iAqsnQ6Ml8PGb6iNvd.nGRCm"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:46:35 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce621b34b5d_f71b80795efc45120@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:35.244594' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:35.251269' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:35.252546' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:35.262462' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:35.263662' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:35.267176' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:46:35.270600' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:46:35.277177' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.5ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:46:35.292324', "updated_at" = '2012-06-05 19:46:35.292324' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["crypted_password", "$2a$10$HmIaKI0cap3f3I095thEauioVX8ruC5srJ72u/3Q4N.d6xEsQ1eYq"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]] Sent mail to user4@portablemind.com (13ms) Date: Tue, 05 Jun 2012 15:46:35 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce621b67754_f71b80795efc45227@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:35.452329' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:35.459266' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:35.460509' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:35.470526' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:35.471782' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:35.475598' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 19:46:35.479010' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 19:46:35.675771' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:46:35.872208', "updated_at" = '2012-06-05 19:46:35.872208' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:46:35.918524', "updated_at" = '2012-06-05 19:46:35.918524' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:46:35.955050', "updated_at" = '2012-06-05 19:46:35.955050' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:46:35.975973', "updated_at" = '2012-06-05 19:46:35.975973' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:46:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 19:46:36.045579', "updated_at" = '2012-06-05 19:46:36.045579' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.2ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (1.8ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (3.1ms) commit transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"   (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.5ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:36.386783' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:36.393683' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:36.394976' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:36.405216' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:36.406475' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:36.410369' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:36.470970' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:36.478635' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:36.480213' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:36.491105' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:36.492455' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:36.495876' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types"  PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 4 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:36.522087' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:36.528922' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 19:46:36.530195' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:36.540166' WHERE "user_preferences"."id" = 6  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 19:46:36.541447' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 19:46:36.545204' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "valid_preference_types" ON "preference_types"."id" = "valid_preference_types"."preference_type_id" WHERE "valid_preference_types"."preferenced_record_id" = 1 AND "valid_preference_types"."preferenced_record_type" = 'AppContainer' SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:36.600966' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:36.608542' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:36.609812' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 19:46:36.620053' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:36.621312' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 19:46:36 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 19:46:36.624688' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.1ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.3ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.2ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (2.0ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.1ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.2ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (3.0ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.3ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.3ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.3ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.4ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.3ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.3ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.3ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (4.3ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.6ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.4ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.7ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.3ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.8ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.6ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.7ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.1ms) commit transaction  (3.2ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.1ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.1ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.8ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (6.6ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00]]  (2.5ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20110525001935')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:28 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (110.0ms) commit transaction  (2.6ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (339.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:00:29 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.8ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["value", "blue.gif"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["value", "planet.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:30 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (9.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00], ["weight", 180]] SQL (0.9ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:00:31.262830', "updated_at" = '2012-06-05 20:00:31.262830' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (1.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00], ["crypted_password", "$2a$10$jYuSQNuq2T90rAWM2GzjEewDpi7urt/cl5UiWTAj0AE..PTi6QAa2"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:00:31 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (4.4ms) Sent mail to user1@portablemind.com (92ms) Date: Tue, 05 Jun 2012 16:00:32 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce6560484_f8ae813913285773d@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:32.120977' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:32.129206' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:32.189706' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:32.227451' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:32.229343' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:32.249704' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:00:32.254019' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 20:00:32.281363' WHERE "users"."id" = 1 Completed 200 OK in 14ms (Views: 2.1ms | ActiveRecord: 1.0ms)  (27.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:00:32.320334', "updated_at" = '2012-06-05 20:00:32.320334' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["crypted_password", "$2a$10$ZzUc1Z0ND8N3Ko.x1OPFDeoOBG5MiUIllEtwTT1qAfQ1Y3Dk6ilZu"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 16:00:32 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce65606e706_f8ae813913285785e@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:32.473628' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:32.480871' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:32.482300' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:32.492716' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:32.494105' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:32.497718' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:00:32.500684' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 0ms  (87.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:00:32.600881', "updated_at" = '2012-06-05 20:00:32.600881' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (64.8ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["crypted_password", "$2a$10$ize76TB1cDwDGjtxSWoNuO96pXmRwdqQTG807mSq2rCYU6/Rmkote"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 16:00:32 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce6560c2534_f8ae813913285799b@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:32.818377' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:32.825669' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:32.827015' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:32.837877' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:32.839201' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:32.842715' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:00:32.845576' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 20:00:32.850911' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms)  (6.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:00:32.870668', "updated_at" = '2012-06-05 20:00:32.870668' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["crypted_password", "$2a$10$pwWXBlQpibE60XX3Vt.RXe3aDJrTYroDtsjuogqdVHSER0rvyJdUu"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:00:32 UTC +00:00]] Sent mail to user4@portablemind.com (15ms) Date: Tue, 05 Jun 2012 16:00:33 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce6560f4121_f8ae813913285803f@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:33.022460' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:33.029391' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:33.030732' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:33.041127' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:33.042536' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["user_id", nil]]  (0.4ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:33.046654' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:00:33.051177' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 20:00:33.249198' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.2ms)  (82.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (6.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (50.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.8ms) rollback transaction  (0.2ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:00:33.523956', "updated_at" = '2012-06-05 20:00:33.523956' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.8ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (15.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:00:33.585598', "updated_at" = '2012-06-05 20:00:33.585598' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (67.3ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:00:33.622792', "updated_at" = '2012-06-05 20:00:33.622792' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (42.5ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:00:33.754023', "updated_at" = '2012-06-05 20:00:33.754023' WHERE "individuals"."id" = 1 Party Load (0.4ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:00:33.829374', "updated_at" = '2012-06-05 20:00:33.829374' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.3ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (1.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 20:00:33 UTC +00:00]]  (2.3ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]]  (3.2ms) commit transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"   (0.1ms) SAVEPOINT active_record_1 Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:34.170673' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:34.178297' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:34.179619' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:34.190550' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:34.191897' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:34.195537' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:34.250028' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:34.260006' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:34.261417' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:34.272126' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:34.273600' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:34.277186' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:34.293357' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:34.300862' WHERE "user_preferences"."id" = 5  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:00:34.302178' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:34.312268' WHERE "user_preferences"."id" = 6  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:00:34.313562' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:00:34.317115' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:34.358382' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:34.367165' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:34.368453' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:00:34.379898' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:34.381315' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:00:34 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:00:34.384771' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (1.2ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (2.8ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.6ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.2ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.4ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (3.4ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.3ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.3ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.1ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.6ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.9ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.6ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (3.2ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.2ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (2.2ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.8ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.7ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.3ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.8ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.1ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.9ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (6.9ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:40 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 20:01:40 UTC +00:00]]  (2.8ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (3.1ms) commit transaction  (3.0ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:41 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (8.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:42 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:01:42 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:42 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:42 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:01:42.629157', "updated_at" = '2012-06-05 20:01:42.629157' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:42 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:42 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:42 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:42 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:42 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:42 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:42 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["crypted_password", "$2a$10$KjizPrpaIjkFV/KTq7MLiOHCz77eN8juFW0pQq2MiaVl1By63AxP."], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (5.1ms) Sent mail to user1@portablemind.com (108ms) Date: Tue, 05 Jun 2012 16:01:43 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce65a75f79c_f8cd81ba51b8310f3@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:43.525064' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:43.602393' WHERE "user_preferences"."id" = 2  (0.4ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:43.604882' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:43.647692' WHERE "user_preferences"."id" = 3  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:43.649561' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["user_id", nil]]  (0.4ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:43.672705' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:01:43.678769' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.5ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 20:01:43.710509' WHERE "users"."id" = 1 Completed 200 OK in 17ms (Views: 2.6ms | ActiveRecord: 1.2ms)  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:01:43.722817', "updated_at" = '2012-06-05 20:01:43.722817' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["crypted_password", "$2a$10$YF278ger0e1qbEDh3ZxwPe37VV1OTyA8HpC9qWOul/Q50CNGJYqVu"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 16:01:43 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce65a7d03e3_f8cd81ba51b83111f@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:43.874831' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:43.881765' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:43.883018' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:43.893412' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:43.894763' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:43.898360' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:01:43.901297' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:01:43.914744', "updated_at" = '2012-06-05 20:01:43.914744' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:43 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["crypted_password", "$2a$10$HeKWKkH1oauJEl0IREXNK.k8qbh/N8nulee4ZwvTCprfK8j.H8tn."], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 16:01:44 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce65a81a8f5_f8cd81ba51b83125b@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:44.130346' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:44.137151' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:44.138402' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:44.148590' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:44.149869' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:44.153292' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:01:44.156098' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 20:01:44.161180' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 0.7ms | ActiveRecord: 0.4ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:01:44.175710', "updated_at" = '2012-06-05 20:01:44.175710' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["crypted_password", "$2a$10$yJbiOd1qvWknHgVOL5XPIe6gsFGn84SyaVuWtvBo9evWnsec7YiU6"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["username", "admin4"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]] Sent mail to user4@portablemind.com (14ms) Date: Tue, 05 Jun 2012 16:01:44 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce65a84ac69_f8cd81ba51b831396@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:44.328465' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:44.335102' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:44.336330' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:44.346555' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:44.347851' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:44.351270' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:01:44.354136' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 20:01:44.551924' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (1.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:01:44.682583', "updated_at" = '2012-06-05 20:01:44.682583' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:01:44.728592', "updated_at" = '2012-06-05 20:01:44.728592' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:01:44.834492', "updated_at" = '2012-06-05 20:01:44.834492' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:01:44.854121', "updated_at" = '2012-06-05 20:01:44.854121' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.6ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:01:44.925482', "updated_at" = '2012-06-05 20:01:44.925482' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:01:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (1.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]]  (2.7ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]]  (3.5ms) commit transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"   (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:45.264801' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:45.271757' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:45.273182' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:45.283988' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:45.285297' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:45.288825' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:45.343014' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:45.351776' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:45.353064' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:45.364805' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:45.366167' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:45.369624' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:45.385821' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:45.392255' WHERE "user_preferences"."id" = 5  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:01:45.393545' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:45.403713' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:01:45.404996' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:01:45.408520' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:45.450525' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:45.458720' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:45.460038' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:01:45.471678' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:45.473007' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:01:45 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:01:45.476929' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.3ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.0ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (2.4ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (3.2ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.3ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.6ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.3ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.4ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.5ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (4.3ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.9ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.1ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (1.7ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.8ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.2ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.3ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.7ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.7ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.7ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.1ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.6ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (7.0ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00]]  (2.5ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:13 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (3.0ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (9.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:08:15.295624', "updated_at" = '2012-06-05 20:08:15.295624' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (1.2ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00], ["crypted_password", "$2a$10$xTSVo1M5K.cFJJGA8.Kl7u4kt3Xqrmaj5e1jr15qRGT.tlqd5/v6q"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00], ["username", "admin1"]] SQL (0.6ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:08:15 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (5.0ms) Sent mail to user1@portablemind.com (106ms) Date: Tue, 05 Jun 2012 16:08:16 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce6730106c7_f96080e3fa8c159cd@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]] SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:16.196986' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:16.273613' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:16.277018' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:16.319331' WHERE "user_preferences"."id" = 3  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:16.321696' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:16.343910' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:08:16.348714' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.5ms) SQL (0.3ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 20:08:16.381503' WHERE "users"."id" = 1 Completed 200 OK in 17ms (Views: 2.5ms | ActiveRecord: 1.2ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:08:16.395268', "updated_at" = '2012-06-05 20:08:16.395268' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["crypted_password", "$2a$10$LOM5t8CBFt.Uu0dnqTkXTe2LWGwvlwk1XCSJHH0wqpcni.ovIHm62"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]] Sent mail to user2@portablemind.com (15ms) Date: Tue, 05 Jun 2012 16:08:16 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce67308148e_f96080e3fa8c16067@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:16.554499' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:16.564155' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:16.565647' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:16.578785' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:16.580359' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:16.584439' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:08:16.588512' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 0ms  (5.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:08:16.608403', "updated_at" = '2012-06-05 20:08:16.608403' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["crypted_password", "$2a$10$u25zjabAKdn5sE1ek1gbQeruGGD8Bcdd7hYPbpR8IT.Hgz6FToLqS"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 16:08:16 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce6730c4c31_f96080e3fa8c16191@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:16.827952' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:16.834740' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:16.835953' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:16.846140' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:16.847366' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:16.850794' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:08:16.853614' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 20:08:16.859092' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:08:16.873318', "updated_at" = '2012-06-05 20:08:16.873318' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["crypted_password", "$2a$10$xEcuOt.jfC144OpGMKVFU.DFTrAw8Ze.YBdI1WYSdholjILIdnW3e"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:08:16 UTC +00:00]] Sent mail to user4@portablemind.com (15ms) Date: Tue, 05 Jun 2012 16:08:17 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce6731112d_f96080e3fa8c1627d@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:17.027058' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:17.033859' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:17.035126' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:17.045327' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:17.046557' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:17.050070' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:08:17.053038' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 20:08:17.251863' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:08:17.377431', "updated_at" = '2012-06-05 20:08:17.377431' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:08:17.423855', "updated_at" = '2012-06-05 20:08:17.423855' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (1.1ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (80.1ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:08:17.541329', "updated_at" = '2012-06-05 20:08:17.541329' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:08:17.561150', "updated_at" = '2012-06-05 20:08:17.561150' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.2ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:08:17.633539', "updated_at" = '2012-06-05 20:08:17.633539' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (1.3ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (2.8ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (3.6ms) commit transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"   (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]] SQL (66.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:17.979692' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:17.986875' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:17.988345' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:17 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:17.999106' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:18.000438' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:18.004167' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:18.058995' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:18.068071' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:18.069373' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:18.081527' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:18.082889' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", nil]]  (0.5ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:18.086424' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:18.102869' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:18.109645' WHERE "user_preferences"."id" = 5  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:08:18.110910' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:18.120951' WHERE "user_preferences"."id" = 6  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:08:18.122323' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:08:18.125832' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:14 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:18.168113' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:18.177419' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:18.178682' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:08:18.190148' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:18.191554' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:08:18 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:08:18.195133' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.2ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (2.8ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.8ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.6ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.3ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (3.5ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.3ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (4.5ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.9ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.6ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.5ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.8ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.6ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.7ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.6ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (2.2ms) commit transaction  (3.1ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.1ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.1ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.9ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (6.6ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:56 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 20:16:56 UTC +00:00]]  (2.5ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110525001935')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (3.5ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["value", "no"]] SQL (1.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["value", "blue.gif"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["value", "portablemind.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (8.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:58 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:16:58 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:16:58 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:16:58 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:16:58.726474', "updated_at" = '2012-06-05 20:16:58.726474' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:16:58 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:16:58 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:58 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:16:58 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:58 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:16:58 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:58 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:16:58 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:58 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:16:58 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:16:59.150481', "updated_at" = '2012-06-05 20:16:59.150481' WHERE "individuals"."id" = 1 Party Load (0.3ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:16:59.289700', "updated_at" = '2012-06-05 20:16:59.289700' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (8.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:16:59.424072', "updated_at" = '2012-06-05 20:16:59.424072' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.9ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]] SQL (0.7ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (4.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.5ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (15.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.7ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:16:59.850100', "updated_at" = '2012-06-05 20:16:59.850100' WHERE "individuals"."id" = 1 Party Load (0.4ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:16:59 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:17:00.053618', "updated_at" = '2012-06-05 20:17:00.053618' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:17:00.090639', "updated_at" = '2012-06-05 20:17:00.090639' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.3ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:17:00.112718', "updated_at" = '2012-06-05 20:17:00.112718' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (1.5ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:17:00.187545', "updated_at" = '2012-06-05 20:17:00.187545' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.4ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (68.8ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction SQL (1.0ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (2.3ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["xtype", nil]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (3.1ms) commit transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.5ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:17:00.682824' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:17:00.691104' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:17:00.692784' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:17:00.715245' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:17:00.717057' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:17:00.737742' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:17:00.793225' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:17:00.803301' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:17:00.804880' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:17:00.815640' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:17:00.817016' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:17:00.820478' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:17:00.836780' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:17:00.843509' WHERE "user_preferences"."id" = 5  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:17:00.844810' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:17:00.855044' WHERE "user_preferences"."id" = 6  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:17:00.856366' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:17:00.859840' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:16:57 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:17:00.901448' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:17:00.910194' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:17:00.911521' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:17:00.922691' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:17:00.924242' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:17:00 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:17:00.927795' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (1.3ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.1ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.6ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.2ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.4ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("parties")  (0.3ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.1ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.3ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.3ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.5ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.3ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.4ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (4.4ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.3ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.0ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.1ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (3.0ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.4ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.9ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.8ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.8ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.5ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.3ms) commit transaction  (3.1ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.1ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.1ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.1ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.1ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.1ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.1ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.1ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.6ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (7.4ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:31 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 20:18:31 UTC +00:00]]  (2.6ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.8ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.5ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["value", "purple.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (15.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:33 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:18:33 UTC +00:00], ["weight", 180]] SQL (1.0ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:33 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:33 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:18:33.589523', "updated_at" = '2012-06-05 20:18:33.589523' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:33 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:33 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:33 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:33 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:33 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:33 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:33 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["weight", 180]] SQL (1.0ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:18:34.036885', "updated_at" = '2012-06-05 20:18:34.036885' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (1.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:18:34.166550', "updated_at" = '2012-06-05 20:18:34.166550' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.4ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["weight", 180]] SQL (0.9ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:18:34.302491', "updated_at" = '2012-06-05 20:18:34.302491' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.3ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (18.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.8ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]] SQL (0.7ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.9ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]] SQL (0.9ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.5ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (1.2ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:18:34.807439', "updated_at" = '2012-06-05 20:18:34.807439' WHERE "individuals"."id" = 1 Party Load (0.3ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:18:34.959009', "updated_at" = '2012-06-05 20:18:34.959009' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:18:34 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:18:35.062022', "updated_at" = '2012-06-05 20:18:35.062022' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:18:35.081243', "updated_at" = '2012-06-05 20:18:35.081243' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:18:35.153775', "updated_at" = '2012-06-05 20:18:35.153775' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (1.3ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.3ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.2ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.2ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (2.5ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.3ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.7ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["xtype", nil]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (3.2ms) commit transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["value", "portablemind.png"]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:18:35.597433' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:18:35.605774' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:18:35.608003' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:18:35.630337' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:18:35.632336' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:18:35.654315' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["username", "employee_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:18:35.772297' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:18:35.781308' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:18:35.782627' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:18:35.795169' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:18:35.796512' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:18:35.799979' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:18:35.817122' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:18:35.824057' WHERE "user_preferences"."id" = 5  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:18:35.825402' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:18:35.835458' WHERE "user_preferences"."id" = 6  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:18:35.836753' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:18:35.840167' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:32 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:18:35.881743' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:18:35.890890' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:18:35.892291' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:18:35.904201' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:18:35.905519' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:18:35 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:18:35.909176' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.3ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (3.0ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.6ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.2ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.8ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.3ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.3ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("categories")  (0.3ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.3ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.4ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.3ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.8ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.8ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.4ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (1.0ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.2ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (2.1ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.7ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.2ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.9ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.2ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.7ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.1ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.1ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.1ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.1ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (6.8ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00]]  (1.9ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:22 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (59.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (3.7ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.5ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["value", "portablemind.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (11.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:31:24.438084', "updated_at" = '2012-06-05 20:31:24.438084' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00], ["crypted_password", "$2a$10$CSizDeuZGXsyi8lHSTwwku7qLjAVQ/TjYX4jOUUU7tUGVJP5PM73."], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:31:24 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (5.4ms) Sent mail to user1@portablemind.com (106ms) Date: Tue, 05 Jun 2012 16:31:25 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce6c9d31f37_fb8880f6647453695@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:25.392384' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:25.401691' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:25.403571' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:25.462315' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:25.464159' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:25.484750' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:31:25.490475' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 20:31:25.518471' WHERE "users"."id" = 1 Completed 200 OK in 14ms (Views: 2.0ms | ActiveRecord: 1.0ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:31:25.529611', "updated_at" = '2012-06-05 20:31:25.529611' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["crypted_password", "$2a$10$NcALzXBt5aDiA.YCamns6Odn8u73HlPyOlYpQcDx39NTcaM3ewA.q"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["username", "admin2"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]] Sent mail to user2@portablemind.com (14ms) Date: Tue, 05 Jun 2012 16:31:25 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce6c9da2a06_fb8880f66474537fd@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.3ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:25.691686' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:25.698806' WHERE "user_preferences"."id" = 2  (0.4ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:25.700535' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:25.714881' WHERE "user_preferences"."id" = 3  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:25.716784' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:25.721934' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:31:25.726218' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:31:25.821119', "updated_at" = '2012-06-05 20:31:25.821119' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["crypted_password", "$2a$10$UiEt75xEoAuLE95BAjcoxeK.ZZSAANzZpRX6rHRLnYy31z.w9tmpy"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["username", "admin3"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]] Sent mail to user3@portablemind.com (15ms) Date: Tue, 05 Jun 2012 16:31:25 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce6c9dead54_fb8880f664745385e@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:25.988015' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:25.995551' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:25.997745' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:31:25 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:26.008914' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:26.010261' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:26.014780' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:31:26.018868' WHERE "users"."id" = 1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 20:31:26.025084' WHERE "users"."id" = 1 Completed 200 OK in 4ms (Views: 1.1ms | ActiveRecord: 0.5ms)  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:31:26.043026', "updated_at" = '2012-06-05 20:31:26.043026' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["crypted_password", "$2a$10$l4MjaSapE3RC4HoCJKStiuvN1J6XYFtMF4bAte73D9K47LRO6tgYa"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 2], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["username", "admin4"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]] Sent mail to user4@portablemind.com (16ms) Date: Tue, 05 Jun 2012 16:31:26 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce6c9e2ef90_fb8880f66474539e9@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:26.215705' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:26.222554' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:26.223824' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:26.234180' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:26.235480' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:26.238894' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 20:31:26.241863' WHERE "users"."id" = 1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (61.9ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 20:31:26.440399' WHERE "users"."id" = 1 Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.2ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.5ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:31:26.568585', "updated_at" = '2012-06-05 20:31:26.568585' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.7ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:31:26.614820', "updated_at" = '2012-06-05 20:31:26.614820' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:31:26.722190', "updated_at" = '2012-06-05 20:31:26.722190' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 2)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:31:26.742233', "updated_at" = '2012-06-05 20:31:26.742233' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 4], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 20:31:26.813375', "updated_at" = '2012-06-05 20:31:26.813375' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 2], ["party_id_to", 3], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 2)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", nil], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 20:31:26 UTC +00:00]]  (1.9ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]]  (3.4ms) commit transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"   (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:27.153292' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:27.160442' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:27.161766' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:27.172184' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:27.173457' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:27.177226' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:27.231695' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:27.240011' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:27.241411' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:27.252126' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:27.253657' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:27.257745' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:27.274253' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:27.280880' WHERE "user_preferences"."id" = 5  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:31:27.282216' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:27.292684' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:31:27.294078' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 20:31:27.297654' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:23 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", 1]]  (0.7ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:27.340916' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:27.349671' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:27.351437' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_option_id", 2], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 20:31:27.362645' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:27.363954' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 20:31:27 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 20:31:27.367415' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) SQLite3::ConstraintException: roles_secured_models.created_at may not be NULL: INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1)  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (1.3ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 1 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 1]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 1 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 1]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 1 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 1]]  (2.9ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 1]]  (1.8ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010) Migrating to BaseErpServices (20080805000020) Migrating to BaseAppFramework (20080805000096) Migrating to CreateCompassAeInstance (20110913145329) Migrating to CreateHasAttributeTables (20111117183144) Migrating to AddIsTemplateToConfigurations (20120316152543) Migrating to UpdateAppContainer (20120320182253) Migrating to RemoveFileSystemLoaderColumn (20120325123722) Migrating to AddBaseUrlToApplication (20120411151848) Migrating to AddUserDefinedToConfigOption (20120427000446) Migrating to UpdateConfigurationJoinTables (20120429130430)  (3.2ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.1ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.1ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("data_migrations")  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.1ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.1ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.1ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.1ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (106.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (401.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.1ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.3ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.2ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.2ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.2ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.2ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.8ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.4ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (439.0ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.3ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.3ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.3ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.1ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.1ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.3ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.4ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (113.8ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("preferences")  (0.6ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.1ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.4ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("preference_types")  (0.8ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.4ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.3ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.3ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.3ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.5ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.4ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.1ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.3ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.3ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.3ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (434.8ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (455.7ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.1ms) PRAGMA index_list("attribute_values")  (0.1ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (165.8ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (1.1ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (509.5ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (413.2ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (112.3ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (454.4ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.2ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (108.8ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (138.6ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (3.1ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.6ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (6.8ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:11 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 20:58:11 UTC +00:00]]  (2.4ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.9ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 20:58:12 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:58:13 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.7ms) rollback transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (7.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["value", "portablemind.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 20:59:04 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (16.8ms) rollback transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (8.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["value", "blue.gif"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["value", "purple.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["value", "planet.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["value", "portablemind.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:03:48 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1) SQLite3::ConstraintException: preference_options_preference_types.created_at may not be NULL: INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (1.1ms) rollback transaction Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.2ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.2ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.2ms) PRAGMA index_list("roles_secured_models")  (0.2ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.2ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.3ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.2ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.1ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.0ms) begin transaction  (0.5ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.3ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.3ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.1ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.3ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.3ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.1ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.3ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.3ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.1ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.1ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.3ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.0ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("preferences")  (0.3ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.3ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.3ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.1ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.1ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.3ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.3ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.1ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.3ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.1ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.7ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.3ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.1ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (4.4ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.5ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.9ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.7ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.7ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (2.0ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.5ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.3ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.9ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) select sqlite_version(*)  (3.7ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (2.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (6.8ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00]]  (2.7ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:29 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.8ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] ContactPurpose Load (0.4ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.6ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-05 21:04:30.442458' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-05 21:04:30.446420' WHERE "preference_types"."id" = 4  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2012-06-05 21:04:30.449122' WHERE "preference_types"."id" = 1  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2012-06-05 21:04:30.450921' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'shared_notesgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 SQL (0.4ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["xtype", "shared_notesgrid"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.3ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 1) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'shared_notesgrid' AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'shared_notes_grid' AND "widgets"."id" != 1) LIMIT 1 SecuredModel Load (0.3ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 2]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_management' AND "widgets"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_rolemanagementpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 3]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_rolemanagementpanel' AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'role_management' AND "widgets"."id" != 3) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_personalinfopanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'user_personal_info' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_personalinfopanel' AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'user_personal_info' AND "widgets"."id" != 4) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_role_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Application Role Management"], ["icon", "icon-document"], ["internal_identifier", "application_role_management"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["xtype", "systemmanagement_applicationrolemanagment"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 5  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (5, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 5]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'systemmanagement_applicationrolemanagment' AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_role_management' AND "widgets"."id" != 5) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 5 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "System Management"], ["icon", "icon-monitor"], ["internal_identifier", "system_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.SystemManagement"], ["shortcut_id", "system_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 5) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'contactmechanismgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 SQL (0.4ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["xtype", "contactmechanismgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'contactmechanismgrid' AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_contact_management' AND "widgets"."id" != 6) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'partygrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_management_widget' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["xtype", "partygrid"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["secured_record_id", 7], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'partygrid' AND "widgets"."id" != 7) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_management_widget' AND "widgets"."id" != 7) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["weight", nil]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:04:30 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2012-06-05 21:04:30.920322', "updated_at" = '2012-06-05 21:04:30.920322' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.4ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]]  (0.2ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2012-06-05 21:04:31.008698', "updated_at" = '2012-06-05 21:04:31.008698' WHERE "organizations"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.2ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["username", "admin"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:04:31.125684' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:04:31.133298' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:04:31.134629' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:04:31.210740' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:04:31.212247' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:04:31.231006' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'pJPFszSRTVLnMRTn24Tr', "crypted_password" = '$2a$10$LvoNjuB.vvAAoPou81HYt.PrLOZVpcP1w0qDrtru9YCrzgInZXKZa', "updated_at" = '2012-06-05 21:04:31.426738' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 8  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (8, 1) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'truenorth@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:04:31.453430' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:04:31.459496' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:04:31.460491' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:04:31.468633' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:04:31.469656' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:04:31.472284' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 2, "salt" = 'L1CkDpG59QQFqqhMUJVa', "crypted_password" = '$2a$10$p6CGHzk23m4Lz3Tqfqi1zu.X06N8KXqfMpRTey9XTdy0m4si5qoWq', "updated_at" = '2012-06-05 21:04:31.636113' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2012-06-05 21:04:31.638004' WHERE "users"."id" = 2 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 9  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (9, 1) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (5.9ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20110728201729')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.2ms) begin transaction SQL (0.8ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 06 Jun 2012 07:00:01 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]]  (3.3ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20110802200222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.1ms) begin transaction DesktopApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (2.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 5) User Exists (0.2ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1  (6.1ms) commit transaction  (2.6ms) insert into data_migrations (version) values ('20110817160743')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["version", #]]  (1.9ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20110913145838')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["description", "Edit"], ["internal_identifier", "edit"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 3 and resource = 'User') LIMIT 1 SQL (0.6ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:04:31 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 10  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (10, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 1) CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 2 and resource = 'User') LIMIT 1 SQL (0.9ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 11  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (11, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 2) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 3 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 2) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 3) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 4 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 4], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (1.3ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 2) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 4) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 2 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 14  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (14, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 5)  (2.0ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20111108183739')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.1ms) begin transaction OrganizerApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.4ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 6 SQL (0.5ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.3ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 6 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 6]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 9 SQL (0.1ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 9]] Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'phonenumbergrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'phone_number_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["xtype", "phonenumbergrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["secured_record_id", 8], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 8 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'emailaddressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'email_address_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["xtype", "emailaddressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["secured_record_id", 9], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 9], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 9 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'postaladdressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'postal_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["xtype", "postaladdressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["secured_record_id", 10], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 10], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 10 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (3.6ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20111108183740')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.1ms) begin transaction AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types"  AuditLogType Load (0.4ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.7ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 2 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 3 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 4 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.3ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.3ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 5 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.3ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 6 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (2.7ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20111111144706')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120109173616'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('file_downloader') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", "File Downloader"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "file_downloader"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]]  (2.9ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20120109173616')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'userinfo' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 SQL (0.5ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["xtype", "userinfo"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["secured_record_id", 11], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 11], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 11) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (18, 1) Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1  (4.0ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20120229160222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.1ms) begin transaction  (0.0ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20120405193721')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.1ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20120411180756')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120413000515'  (0.1ms) begin transaction User Load (0.4ms) SELECT "users".* FROM "users" SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["user_id", 1]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["user_id", 2]]  (2.4ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20120413000515')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'configuration_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:04:32 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]]  (4.1ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20120418164215') Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.1ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.6ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.3ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.3ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.0ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.1ms) PRAGMA index_list("preference_options_preference_types")  (0.3ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.5ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.7ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (3.4ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.0ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.6ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.9ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.7ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.9ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.7ms) commit transaction  (2.9ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.1ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.1ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.1ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.1ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (3.0ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (2.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (6.7ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00]]  (2.4ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:20 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.7ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["value", "blue.gif"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.5ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-05 21:05:21.376479' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-05 21:05:21.380203' WHERE "preference_types"."id" = 4  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2012-06-05 21:05:21.382888' WHERE "preference_types"."id" = 1  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2012-06-05 21:05:21.384711' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'shared_notesgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 SQL (0.4ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["xtype", "shared_notesgrid"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'shared_notesgrid' AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'shared_notes_grid' AND "widgets"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 2]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_management' AND "widgets"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_rolemanagementpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 3]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_rolemanagementpanel' AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'role_management' AND "widgets"."id" != 3) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_personalinfopanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'user_personal_info' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_personalinfopanel' AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'user_personal_info' AND "widgets"."id" != 4) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Application Role Management"], ["icon", "icon-document"], ["internal_identifier", "application_role_management"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["xtype", "systemmanagement_applicationrolemanagment"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 5  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (5, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 5]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'systemmanagement_applicationrolemanagment' AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_role_management' AND "widgets"."id" != 5) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 5 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "System Management"], ["icon", "icon-monitor"], ["internal_identifier", "system_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.SystemManagement"], ["shortcut_id", "system_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 5) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'contactmechanismgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["xtype", "contactmechanismgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'contactmechanismgrid' AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_contact_management' AND "widgets"."id" != 6) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'partygrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_management_widget' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["xtype", "partygrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["secured_record_id", 7], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'partygrid' AND "widgets"."id" != 7) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_management_widget' AND "widgets"."id" != 7) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["weight", nil]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2012-06-05 21:05:21.884859', "updated_at" = '2012-06-05 21:05:21.884859' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.4ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:21 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2012-06-05 21:05:21.978939', "updated_at" = '2012-06-05 21:05:21.978939' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.2ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["username", "admin"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:22.150977' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:22.158731' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:05:22.160125' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:22.183842' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:05:22.185216' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:05:22.205188' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'Vz4jLUANCcN8kZARvpdz', "crypted_password" = '$2a$10$mleAIgXn9TreuvHcUynbJ.TnNHhE.c8pLzckYa./95MU6/xTpfY0G', "updated_at" = '2012-06-05 21:05:22.373564' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 8  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (8, 1) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'truenorth@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:22.400070' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:22.406113' WHERE "user_preferences"."id" = 5  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:05:22.407228' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:22.415408' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:05:22.416384' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:05:22.418985' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 2, "salt" = '6hW9noT3qAXJHuPGe7Ms', "crypted_password" = '$2a$10$C8H1TA6b66l7eGvuDAQwieLTMzYtrJJwSJm1HBiktMxYIHGhVAP3i', "updated_at" = '2012-06-05 21:05:22.584637' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2012-06-05 21:05:22.586535' WHERE "users"."id" = 2 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 9  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (9, 1) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (5.6ms) commit transaction  (4.0ms) insert into data_migrations (version) values ('20110728201729')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 06 Jun 2012 07:00:01 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]]  (2.1ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110802200222')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.2ms) begin transaction DesktopApplication Load (0.4ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (1.1ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] PreferenceType Load (0.3ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.3ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.3ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1  (3.2ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20110817160743')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["version", #]]  (1.6ms) commit transaction  (2.8ms) insert into data_migrations (version) values ('20110913145838')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["description", "Edit"], ["internal_identifier", "edit"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 3 and resource = 'User') LIMIT 1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 10  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (10, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 1) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 2 and resource = 'User') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 11  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (11, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 3 and resource = 'Note') LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 2) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 3) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 4 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 4], ["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 2) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 4) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 2 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 14  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (14, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 5)  (1.8ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20111108183739')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.1ms) begin transaction OrganizerApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.3ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 6 SQL (0.2ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 6 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 6]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 9 SQL (0.1ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 9]] Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'phonenumbergrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'phone_number_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["xtype", "phonenumbergrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["secured_record_id", 8], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 8 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'emailaddressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'email_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["xtype", "emailaddressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["secured_record_id", 9], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 9], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 9 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'postaladdressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'postal_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["xtype", "postaladdressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["secured_record_id", 10], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 10], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:22 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 10 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (3.1ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20111108183740')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.1ms) begin transaction AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types"  AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.5ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 2 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 3 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 4 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 5 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.3ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 6 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (2.4ms) commit transaction  (2.7ms) insert into data_migrations (version) values ('20111111144706')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120109173616'  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('file_downloader') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["description", "File Downloader"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "file_downloader"], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00]]  (2.4ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20120109173616')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'userinfo' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 SQL (0.5ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["xtype", "userinfo"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["secured_record_id", 11], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 11], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 11) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (18, 1) Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1  (4.0ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20120229160222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.1ms) begin transaction  (0.0ms) commit transaction  (1.8ms) insert into data_migrations (version) values ('20120405193721')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.1ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20120411180756')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120413000515'  (0.1ms) begin transaction User Load (0.3ms) SELECT "users".* FROM "users" SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["user_id", 1]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["user_id", 2]]  (2.1ms) commit transaction  (1.7ms) insert into data_migrations (version) values ('20120413000515')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'configuration_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:23 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]]  (3.2ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20120418164215')  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (8.3ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00], ["weight", 180]] SQL (0.8ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:05:24.374424', "updated_at" = '2012-06-05 21:05:24.374424' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (1.0ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00], ["crypted_password", "$2a$10$TkHlB1rcmNh5aHznB0Tr4OBM7ZQX99VChV91ywB4ZA8dX5160KtwO"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00], ["username", "admin1"]] SQL (0.6ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:05:24 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (23.6ms) Sent mail to user1@portablemind.com (108ms) Date: Tue, 05 Jun 2012 17:05:25 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce7495416a0_fec9820d889c8702a@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:25.469895' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (1.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:25.483585' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:05:25.485639' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:25.524177' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:05:25.526283' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:05:25.549339' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:05:25.554535' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.3ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:05:25.596963' WHERE "users"."id" = 3 Completed 200 OK in 16ms (Views: 2.1ms | ActiveRecord: 1.2ms)  (18.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.3ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["weight", 180]] SQL (1.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]]  (0.8ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:05:25.655566', "updated_at" = '2012-06-05 21:05:25.655566' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["crypted_password", "$2a$10$Iq75hNMdpmDmYjLusbGCPuzpVsgN9ysuj.BmJlL61a6lJkheclRdG"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 17:05:25 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce7495c740b_fec9820d889c871b3@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:25.839262' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:25.848160' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:05:25.849431' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:25.860096' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:05:25.861566' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:05:25.865238' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:05:25.868072' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:05:25.888275', "updated_at" = '2012-06-05 21:05:25.888275' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:25 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["crypted_password", "$2a$10$qemI77MaTjogne1KTGtH4.oNlIc5pmIKARL2FdiJq2XJFrBJEJOwq"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["username", "admin3"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]] Sent mail to user3@portablemind.com (18ms) Date: Tue, 05 Jun 2012 17:05:26 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce74961a40a_fec9820d889c87278@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:26.136588' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.3ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:26.148678' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:05:26.150197' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.7ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:26.165619' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:05:26.170905' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["user_id", nil]]  (0.4ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:05:26.176046' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:05:26.180950' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.3ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:05:26.189221' WHERE "users"."id" = 3 Completed 200 OK in 5ms (Views: 1.1ms | ActiveRecord: 0.6ms)  (1.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:05:26.207958', "updated_at" = '2012-06-05 21:05:26.207958' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (1.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["crypted_password", "$2a$10$Yj6GbLsi95mtB/QyWvFr5ecxSMaOMoX21R2iGFMynkjT38hOKWueu"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]] Sent mail to user4@portablemind.com (18ms) Date: Tue, 05 Jun 2012 17:05:26 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce74965a974_fec9820d889c87348@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:26.399222' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:26.409201' WHERE "user_preferences"."id" = 8  (0.4ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:05:26.411063' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:05:26.424214' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:05:26.426523' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["user_id", nil]]  (120.6ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:05:26.431351' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:05:26.555192' WHERE "users"."id" = 3 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.3ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.9ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:05:26.770682' WHERE "users"."id" = 3 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.6ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:05:26.902139', "updated_at" = '2012-06-05 21:05:26.902139' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:26 UTC +00:00]]  (69.7ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:05:26.950565', "updated_at" = '2012-06-05 21:05:26.950565' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:05:27.056681', "updated_at" = '2012-06-05 21:05:27.056681' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:05:27.075602', "updated_at" = '2012-06-05 21:05:27.075602' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 4) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:05:27.148294', "updated_at" = '2012-06-05 21:05:27.148294' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 4)  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction SQL (1.4ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (1.9ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["secured_record_id", 12], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 12], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (3.2ms) commit transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"   (0.1ms) SAVEPOINT active_record_1 Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:05:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (2.7ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 12 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 12]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 12 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 19 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 19]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 18 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 18]]  (3.2ms) commit transaction User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 6]]  (1.8ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.3ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.2ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.3ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.2ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.3ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.2ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.1ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.1ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.5ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.3ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.3ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.3ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.1ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.1ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.3ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.3ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.3ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (3.3ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.3ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (1.0ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.3ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.3ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.1ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.3ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.4ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.5ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.2ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.3ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.5ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (1.5ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.5ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.8ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.3ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.0ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.3ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.3ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.1ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.3ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.1ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.5ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.6ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (9.2ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00]]  (2.1ms) commit transaction  (2.8ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (1.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.5ms) commit transaction  (3.0ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.4ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 21:07:15 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.5ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.5ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-05 21:07:16.215091' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-05 21:07:16.218653' WHERE "preference_types"."id" = 4  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2012-06-05 21:07:16.221300' WHERE "preference_types"."id" = 1  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2012-06-05 21:07:16.223156' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'shared_notesgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 SQL (0.4ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["xtype", "shared_notesgrid"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'shared_notesgrid' AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'shared_notes_grid' AND "widgets"."id" != 1) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 2]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_management' AND "widgets"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_rolemanagementpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 3]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_rolemanagementpanel' AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'role_management' AND "widgets"."id" != 3) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_personalinfopanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'user_personal_info' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_personalinfopanel' AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'user_personal_info' AND "widgets"."id" != 4) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Application Role Management"], ["icon", "icon-document"], ["internal_identifier", "application_role_management"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["xtype", "systemmanagement_applicationrolemanagment"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 5  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (5, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 5]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'systemmanagement_applicationrolemanagment' AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_role_management' AND "widgets"."id" != 5) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 5 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "System Management"], ["icon", "icon-monitor"], ["internal_identifier", "system_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.SystemManagement"], ["shortcut_id", "system_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 5) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'contactmechanismgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["xtype", "contactmechanismgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'contactmechanismgrid' AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_contact_management' AND "widgets"."id" != 6) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'partygrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_management_widget' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["xtype", "partygrid"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["secured_record_id", 7], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'partygrid' AND "widgets"."id" != 7) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_management_widget' AND "widgets"."id" != 7) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["weight", nil]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2012-06-05 21:07:16.720515', "updated_at" = '2012-06-05 21:07:16.720515' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.4ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2012-06-05 21:07:16.814709', "updated_at" = '2012-06-05 21:07:16.814709' WHERE "organizations"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.2ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["username", "admin"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:16.992953' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:16 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:17.000969' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:07:17.002357' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:17.025234' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:07:17.026720' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:07:17.044616' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'YzdZo9Jkh6yKBJgSyuvF', "crypted_password" = '$2a$10$It2wgB5hni5qWwb1rfqNeuQdC3e3Ml1KlAS8SFqG7mcQNsn/ynEly', "updated_at" = '2012-06-05 21:07:17.211882' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 8  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (8, 1) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'truenorth@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["username", "truenorth"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:17.237760' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:17.243827' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:07:17.244807' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:17.252408' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:07:17.253408' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:07:17.256032' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 2, "salt" = 'iePFvKruBbfwb5SeFqnp', "crypted_password" = '$2a$10$shSdG0/TKcFjllLPh3gcGuiJQMDwhBirhTZ5Wfi2kFy3IcUr4JFqm', "updated_at" = '2012-06-05 21:07:17.420110' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2012-06-05 21:07:17.421935' WHERE "users"."id" = 2 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 9  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (9, 1) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (5.4ms) commit transaction  (3.6ms) insert into data_migrations (version) values ('20110728201729')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 06 Jun 2012 07:00:01 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]]  (2.1ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110802200222')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.1ms) begin transaction DesktopApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1  (3.2ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110817160743')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["version", #]]  (1.8ms) commit transaction  (1.7ms) insert into data_migrations (version) values ('20110913145838')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", "Edit"], ["internal_identifier", "edit"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 3 and resource = 'User') LIMIT 1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 10  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (10, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 1) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 2 and resource = 'User') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 11  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (11, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 3 and resource = 'Note') LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 2) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 3) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 4 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 4], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 2) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 4) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 2 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.5ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 14  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (14, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 5)  (2.9ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20111108183739')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.1ms) begin transaction OrganizerApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.3ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 6 SQL (0.1ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 6 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 6]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 9 SQL (0.1ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 9]] Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'phonenumbergrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'phone_number_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["xtype", "phonenumbergrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["secured_record_id", 8], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 8 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'emailaddressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'email_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["xtype", "emailaddressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["secured_record_id", 9], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 9], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 9 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'postaladdressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'postal_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["xtype", "postaladdressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["secured_record_id", 10], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 10], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 10 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (3.2ms) commit transaction  (2.9ms) insert into data_migrations (version) values ('20111108183740')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.1ms) begin transaction AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types"  AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.5ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 2 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 3 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 4 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:07:17 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (61.3ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 5 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.3ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.3ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 6 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (1.6ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20111111144706')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120109173616'  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('file_downloader') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00], ["description", "File Downloader"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "file_downloader"], ["updated_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00]]  (2.4ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20120109173616')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'userinfo' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 SQL (0.5ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00], ["xtype", "userinfo"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00], ["secured_record_id", 11], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 11], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 11) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (18, 1) Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1  (3.8ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20120229160222')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.1ms) begin transaction  (0.0ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20120405193721')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.1ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20120411180756')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120413000515'  (0.1ms) begin transaction User Load (0.3ms) SELECT "users".* FROM "users" SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00], ["user_id", 1]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00], ["user_id", 2]]  (2.1ms) commit transaction  (2.7ms) insert into data_migrations (version) values ('20120413000515')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'configuration_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:18 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]]  (3.1ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20120418164215')  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (12.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:07:19.217152', "updated_at" = '2012-06-05 21:07:19.217152' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["crypted_password", "$2a$10$BZlIRv4VNLC9OklUYs/ygOaYyiWx97umEU5AJ/OeAvdgQweM9R64."], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (6.0ms) Sent mail to user1@portablemind.com (42ms) Date: Tue, 05 Jun 2012 17:07:19 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce7507e43b8_fef88174bab8173a4@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:07:19 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:20.147127' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:20.159686' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:20.161503' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:20.194960' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:20.196809' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:20.217425' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:07:20.221812' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:07:20.249618' WHERE "users"."id" = 3 Completed 200 OK in 15ms (Views: 2.1ms | ActiveRecord: 1.0ms)  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:07:20.260808', "updated_at" = '2012-06-05 21:07:20.260808' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (63.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["crypted_password", "$2a$10$WGXL54Ut9QJEzZKLt0nNCOhuFZd6Z0XIXjrCdUwy3Co4vWZL7.61e"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 17:07:20 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce75086f3fd_fef88174bab8174d5@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:20.478705' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:20.487233' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:20.488544' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:20.499507' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:20.500874' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:20.504329' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:07:20.507224' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 0ms  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:07:20.520357', "updated_at" = '2012-06-05 21:07:20.520357' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["crypted_password", "$2a$10$BTBcD95TUYT//ekgQznCgej.NZR7UnlOW5yWalgd.ujnFRQGunJr6"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["username", "admin3"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 17:07:20 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce75089f533_fef88174bab81758b@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:20.675424' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", 3]]  (1.7ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:20.683677' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:20.686831' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:20.697763' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:20.699126' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:20.702541' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:07:20.705440' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:07:20.710916' WHERE "users"."id" = 3 Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:07:20.725705', "updated_at" = '2012-06-05 21:07:20.725705' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["crypted_password", "$2a$10$QalW8p0uQ9ZXRQm1Zmyly.VG0CwDIgY4JHS2GwxvHbu96QrIeU3Q6"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] Sent mail to user4@portablemind.com (14ms) Date: Tue, 05 Jun 2012 17:07:20 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce7508d1feb_fef88174bab817682@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:20.883674' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:20.893558' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:20.894861' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:20.906859' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:20.908333' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:07:20 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:20.912130' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:07:20.915247' WHERE "users"."id" = 3 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:07:21.114054' WHERE "users"."id" = 3 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:07:21.319842', "updated_at" = '2012-06-05 21:07:21.319842' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.8ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4)  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:07:21.365858', "updated_at" = '2012-06-05 21:07:21.365858' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:07:21.401816', "updated_at" = '2012-06-05 21:07:21.401816' WHERE "individuals"."id" = 3 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4)  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:07:21.423012', "updated_at" = '2012-06-05 21:07:21.423012' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.6ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 4) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:07:21.500198', "updated_at" = '2012-06-05 21:07:21.500198' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 4)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", nil]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (1.8ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["secured_record_id", 12], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 12], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (3.6ms) commit transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:21.802332' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:21.810669' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:21.811939' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:21.822560' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:21.823854' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:21.827880' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (1.1ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["username", "employee_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]] SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:21.943770' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:21.952216' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:21.953618' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:21.966532' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:21.968135' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:21.972390' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_id", 10], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:21.990020' WHERE "user_preferences"."id" = 10 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["preference_id", 11], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:21 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:21.997887' WHERE "user_preferences"."id" = 11  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:07:21.999137' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 12 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 13], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["preference_id", 12], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 13, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:22.009374' WHERE "user_preferences"."id" = 12  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:07:22.010712' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 13 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:07:22.014077' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 14  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22  (0.1ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (22, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (1.2ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:22.136784' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:22.145261' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:22.146561' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:07:22.159376' WHERE "user_preferences"."id" = 9  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:22.161308' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:07:22.165288' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:07:22 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capability_id" = 6 SQL (0.1ms) DELETE FROM "capabilities" WHERE "capabilities"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 21 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 21]]  (0.0ms) RELEASE SAVEPOINT active_record_1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (1.3ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 12 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 12]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 12 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 19 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 19]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 18 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 18]]  (3.5ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 6]]  (1.7ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.5ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.1ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.6ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.1ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.1ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.1ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.1ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.4ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.1ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.3ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.5ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (4.1ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.8ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.3ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.5ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (1.6ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (2.4ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.8ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.9ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.3ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.3ms) commit transaction  (3.1ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.1ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.1ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.1ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.1ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.1ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) select sqlite_version(*)  (2.4ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.1ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (6.9ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]]  (2.3ms) commit transaction  (2.6ms) insert into data_migrations (version) values ('20110525001935')  (0.4ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.7ms) commit transaction  (2.7ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.8ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]] ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]] ContactPurpose Load (0.4ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]] ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 21:08:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["value", "purple.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.6ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-05 21:08:38.183641' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-05 21:08:38.187310' WHERE "preference_types"."id" = 4  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2012-06-05 21:08:38.190176' WHERE "preference_types"."id" = 1  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2012-06-05 21:08:38.192133' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'shared_notesgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 SQL (0.4ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["xtype", "shared_notesgrid"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 1) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'shared_notesgrid' AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'shared_notes_grid' AND "widgets"."id" != 1) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 2]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_management' AND "widgets"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_rolemanagementpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 3]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_rolemanagementpanel' AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'role_management' AND "widgets"."id" != 3) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_personalinfopanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'user_personal_info' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_personalinfopanel' AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'user_personal_info' AND "widgets"."id" != 4) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_role_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Application Role Management"], ["icon", "icon-document"], ["internal_identifier", "application_role_management"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["xtype", "systemmanagement_applicationrolemanagment"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 5  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (5, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 5]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.5ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'systemmanagement_applicationrolemanagment' AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_role_management' AND "widgets"."id" != 5) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 5 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.5ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "System Management"], ["icon", "icon-monitor"], ["internal_identifier", "system_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.SystemManagement"], ["shortcut_id", "system_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 5) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'contactmechanismgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["xtype", "contactmechanismgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'contactmechanismgrid' AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_contact_management' AND "widgets"."id" != 6) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'partygrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_management_widget' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["xtype", "partygrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["secured_record_id", 7], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'partygrid' AND "widgets"."id" != 7) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_management_widget' AND "widgets"."id" != 7) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["weight", nil]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2012-06-05 21:08:38.696297', "updated_at" = '2012-06-05 21:08:38.696297' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.4ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2012-06-05 21:08:38.790627', "updated_at" = '2012-06-05 21:08:38.790627' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.2ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["username", "admin"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:38.962972' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:38.971858' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:08:38.973991' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:38 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:38.998813' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:08:39.000254' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:08:39.018565' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.6ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'PsgyTYrqwWkQmqTUK52n', "crypted_password" = '$2a$10$hj/1VH/7kf7dqec7DXTJkumRN/9lkoIXIhU0rOCDo5yIngSHamv9q', "updated_at" = '2012-06-05 21:08:39.187125' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 8  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (8, 1) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'truenorth@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:39.214130' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:39.220079' WHERE "user_preferences"."id" = 5  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:08:39.221083' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:39.229285' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:08:39.230273' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:08:39.232835' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 2, "salt" = 'W4bUY7SzHoPozxApJz7f', "crypted_password" = '$2a$10$RVT7n31t8Q4vGJzhYQnn0eXyZlKG5c0Px.DBlEevaLCeo4xu0euI2', "updated_at" = '2012-06-05 21:08:39.396496' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2012-06-05 21:08:39.398256' WHERE "users"."id" = 2 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 9  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (9, 1) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (6.2ms) commit transaction  (3.3ms) insert into data_migrations (version) values ('20110728201729')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 06 Jun 2012 07:00:01 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]]  (2.5ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20110802200222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.1ms) begin transaction DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1  (3.1ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110817160743')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["version", #]]  (2.3ms) commit transaction  (1.8ms) insert into data_migrations (version) values ('20110913145838')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", "Edit"], ["internal_identifier", "edit"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 3 and resource = 'User') LIMIT 1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 10  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (10, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 1) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 2 and resource = 'User') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 11  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (11, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 3 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 2) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 3) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 4 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 4], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 2) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 4) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 2 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 14  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (14, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 5)  (2.0ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20111108183739')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.1ms) begin transaction OrganizerApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.4ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 6 SQL (0.1ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 6 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 6]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 9 SQL (0.1ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 9]] Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'phonenumbergrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'phone_number_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["xtype", "phonenumbergrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["secured_record_id", 8], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 8 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'emailaddressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'email_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["xtype", "emailaddressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["secured_record_id", 9], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 9], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 9 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'postaladdressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'postal_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["xtype", "postaladdressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["secured_record_id", 10], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 10], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 10 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (3.7ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20111108183740')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.1ms) begin transaction AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types"  AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.5ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 2 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 3 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 4 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 5 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.3ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:08:39 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.4ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 6 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (1.7ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20111111144706')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120109173616'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('file_downloader') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00], ["description", "File Downloader"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "file_downloader"], ["updated_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00]]  (2.5ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20120109173616')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'userinfo' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 SQL (0.5ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00], ["xtype", "userinfo"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00], ["secured_record_id", 11], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 11], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 11) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (18, 1) Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1  (3.4ms) commit transaction  (2.6ms) insert into data_migrations (version) values ('20120229160222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.1ms) begin transaction  (0.0ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20120405193721')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.1ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20120411180756')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120413000515'  (0.1ms) begin transaction User Load (0.5ms) SELECT "users".* FROM "users" SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00], ["user_id", 1]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00], ["user_id", 2]]  (2.3ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20120413000515')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'configuration_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:40 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.3ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]]  (3.2ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20120418164215')  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (11.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:08:41.188236', "updated_at" = '2012-06-05 21:08:41.188236' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["crypted_password", "$2a$10$Vrkio9o0XYjC.g6GokfWYOejQ4VBGplqRp5kzo9AK73WvnzEJ76bC"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["username", "admin1"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (4.8ms) Sent mail to user1@portablemind.com (56ms) Date: Tue, 05 Jun 2012 17:08:41 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce7559dab3a_ff21807dcbe06624@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:08:41 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.3ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (1.0ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:42.108025' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:42.118211' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:42.119939' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:42.153081' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:42.154921' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:42.176948' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:08:42.182504' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:08:42.210753' WHERE "users"."id" = 3 Completed 200 OK in 15ms (Views: 2.2ms | ActiveRecord: 1.1ms)  (32.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:08:42.254450', "updated_at" = '2012-06-05 21:08:42.254450' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["crypted_password", "$2a$10$anxcSsleNUZZCRl7ZoEJPujVphd5ZliCTkpRj42.TFMh.8O7eRqMu"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 05 Jun 2012 17:08:42 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce755a6d09b_ff21807dcbe067cb@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:42.469389' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:42.477518' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:42.478760' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:42.489782' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:42.491444' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:42.495060' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:08:42.497972' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (66.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:08:42.580022', "updated_at" = '2012-06-05 21:08:42.580022' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["crypted_password", "$2a$10$I238azlgpqRgiCKZIzOyg.MeOTEnfmf.Bok8fjff2piO4wkSeo2sW"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] Sent mail to user3@portablemind.com (16ms) Date: Tue, 05 Jun 2012 17:08:42 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce755ab07a2_ff21807dcbe068a8@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:42.748317' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:42.756228' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:42.757569' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:42.767860' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:42.769140' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:42.772652' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (1.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:08:42.775749' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:08:42.782396' WHERE "users"."id" = 3 Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.5ms)  (23.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:08:42.819658', "updated_at" = '2012-06-05 21:08:42.819658' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["crypted_password", "$2a$10$O0SG6RIOvyKnIrp1RUyQveCiFZgVwO8ZTejL39JrAQjBMZ6qBpggq"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] Sent mail to user4@portablemind.com (13ms) Date: Tue, 05 Jun 2012 17:08:42 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce755ae8232_ff21807dcbe0699f@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:42.973309' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:42.981325' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:42.982530' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:42.992773' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:42.994042' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:08:42 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:42.997318' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:08:43.000453' WHERE "users"."id" = 3 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:08:43.195631' WHERE "users"."id" = 3 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" IS NULL) LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'DesktopApplication') LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:08:43.388572', "updated_at" = '2012-06-05 21:08:43.388572' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:08:43.436364', "updated_at" = '2012-06-05 21:08:43.436364' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:08:43.472696', "updated_at" = '2012-06-05 21:08:43.472696' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.7ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:08:43.493934', "updated_at" = '2012-06-05 21:08:43.493934' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 4) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:08:43.567897', "updated_at" = '2012-06-05 21:08:43.567897' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.3ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 4)  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["user_id", nil]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (1.6ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.7ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["secured_record_id", 12], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 12], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (3.0ms) commit transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:43.866415' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:43.874815' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:43.876125' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:43.886338' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:43.887591' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:43.891270' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (1.2ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["username", "employee_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:08:43 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:44.005694' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:44.014818' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:44.016075' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.3ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:44.029592' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:44.030816' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:44.034861' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_id", 10], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:44.052579' WHERE "user_preferences"."id" = 10 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_id", 11], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:44.060328' WHERE "user_preferences"."id" = 11  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:08:44.061609' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 12 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 13], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_id", 12], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 13, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:44.071293' WHERE "user_preferences"."id" = 12  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:08:44.072515' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 13 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:08:44.076038' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 14  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (22, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (1.2ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:44.202376' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:44.211031' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:44.212429' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:08:44.227764' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:44.229152' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:08:44.232673' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:08:44 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capability_id" = 6 SQL (0.1ms) DELETE FROM "capabilities" WHERE "capabilities"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 21 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 21]]  (0.0ms) RELEASE SAVEPOINT active_record_1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (1.2ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 12 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 12]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 12 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 19 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 19]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 18 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 18]]  (2.9ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 6]]  (2.1ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.5ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.4ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.1ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.3ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.3ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.7ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.7ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (2.2ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.5ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.2ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.5ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.7ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.8ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.3ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.3ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) select sqlite_version(*)  (4.6ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (7.1ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00]]  (2.7ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:12 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (54.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (4.0ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["value", "blue.gif"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["value", "planet.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.6ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-05 21:13:13.503592' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-05 21:13:13.507234' WHERE "preference_types"."id" = 4  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2012-06-05 21:13:13.509974' WHERE "preference_types"."id" = 1  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2012-06-05 21:13:13.511919' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'shared_notesgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 SQL (0.4ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["xtype", "shared_notesgrid"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 1) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'shared_notesgrid' AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'shared_notes_grid' AND "widgets"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 2]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_management' AND "widgets"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_rolemanagementpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 3]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_rolemanagementpanel' AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'role_management' AND "widgets"."id" != 3) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_personalinfopanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'user_personal_info' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_personalinfopanel' AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'user_personal_info' AND "widgets"."id" != 4) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Application Role Management"], ["icon", "icon-document"], ["internal_identifier", "application_role_management"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["xtype", "systemmanagement_applicationrolemanagment"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 5  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (5, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 5]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'systemmanagement_applicationrolemanagment' AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_role_management' AND "widgets"."id" != 5) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 5 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "System Management"], ["icon", "icon-monitor"], ["internal_identifier", "system_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.SystemManagement"], ["shortcut_id", "system_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 5) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'contactmechanismgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["xtype", "contactmechanismgrid"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'contactmechanismgrid' AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_contact_management' AND "widgets"."id" != 6) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'partygrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_management_widget' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["xtype", "partygrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["secured_record_id", 7], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.4ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'partygrid' AND "widgets"."id" != 7) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_management_widget' AND "widgets"."id" != 7) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:13 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["weight", nil]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2012-06-05 21:13:14.022445', "updated_at" = '2012-06-05 21:13:14.022445' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.4ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2012-06-05 21:13:14.057668', "updated_at" = '2012-06-05 21:13:14.057668' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.2ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["username", "admin"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:14.229930' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:14.237554' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:13:14.239001' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:14.264467' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:13:14.265915' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:13:14.284775' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'AxiZFq4bcms1qryzYowu', "crypted_password" = '$2a$10$y6O2e3BwFL0Oa1ROqsURRO7c0ZyvDB60wl3n3PCJKKq0d7WxIrcxa', "updated_at" = '2012-06-05 21:13:14.453096' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 8  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (8, 1) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'truenorth@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (60.9ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:14.582988' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:14.589501' WHERE "user_preferences"."id" = 5  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:13:14.590599' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:14.599204' WHERE "user_preferences"."id" = 6  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:13:14.600362' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:13:14.603169' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 2, "salt" = 'cSuMaajBCcL8zM9chYHc', "crypted_password" = '$2a$10$cHIq7iJRhAXjO31s8kifvuceXdEZikTxPsiJUzIR5y7ZWhjhVdGCK', "updated_at" = '2012-06-05 21:13:14.769153' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2012-06-05 21:13:14.771044' WHERE "users"."id" = 2 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 9  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (9, 1) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (5.7ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110728201729')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 06 Jun 2012 07:00:01 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]]  (2.5ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110802200222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.1ms) begin transaction DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1  (3.2ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20110817160743')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["version", #]]  (2.1ms) commit transaction  (2.9ms) insert into data_migrations (version) values ('20110913145838')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["description", "Edit"], ["internal_identifier", "edit"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] SQL (41.5ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 3 and resource = 'User') LIMIT 1 SQL (0.6ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:13:14 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 10  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (10, 1) Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 1) CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 2 and resource = 'User') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] Role Load (0.4ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 11  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (11, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 3 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 2) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 3) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 4 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 4], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 2) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 4) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 2 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 14  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (14, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 5)  (1.9ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20111108183739')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.1ms) begin transaction OrganizerApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.3ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 6 SQL (0.1ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.2ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 6 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 6]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 9 SQL (0.1ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 9]] Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'phonenumbergrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'phone_number_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["xtype", "phonenumbergrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["secured_record_id", 8], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 8 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'emailaddressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'email_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["xtype", "emailaddressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["secured_record_id", 9], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 9], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 9 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'postaladdressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'postal_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["xtype", "postaladdressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["secured_record_id", 10], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 10], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 10 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (3.6ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20111108183740')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.1ms) begin transaction AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types"  AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.5ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 2 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 3 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 4 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 5 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 6 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (2.5ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20111111144706')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120109173616'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('file_downloader') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", "File Downloader"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "file_downloader"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]]  (2.7ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20120109173616')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'userinfo' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 SQL (0.5ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["xtype", "userinfo"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["secured_record_id", 11], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 11], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 11) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (18, 1) Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1  (3.6ms) commit transaction  (3.1ms) insert into data_migrations (version) values ('20120229160222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.1ms) begin transaction  (0.0ms) commit transaction  (1.6ms) insert into data_migrations (version) values ('20120405193721')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.1ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20120411180756')  (0.4ms) select count(*) as num_rows from data_migrations where version = '20120413000515'  (0.1ms) begin transaction User Load (0.4ms) SELECT "users".* FROM "users" SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["user_id", 1]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["user_id", 2]]  (2.0ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20120413000515')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'configuration_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:15 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]]  (3.3ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20120418164215')  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (9.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:13:16.495329', "updated_at" = '2012-06-05 21:13:16.495329' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00], ["crypted_password", "$2a$10$ZH24ya8dT5uxdWKgqu5NCeBdnzz85NsYN0i7bxGFGxKCtqI8H3rme"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:13:16 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (5.4ms) Sent mail to user1@portablemind.com (38ms) Date: Tue, 05 Jun 2012 17:13:17 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce766d2ec47_ff8a817f4f8c343ce@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (1.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]] SQL (0.9ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["user_id", 3]]  (0.4ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:17.419357' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:17.438326' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:17.439943' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:17.473448' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:17.475192' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:17.497054' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:13:17.502049' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.3ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:13:17.537330' WHERE "users"."id" = 3 Completed 200 OK in 17ms (Views: 2.1ms | ActiveRecord: 1.1ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (3.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:13:17.550886', "updated_at" = '2012-06-05 21:13:17.550886' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["crypted_password", "$2a$10$coDOaFF803Mje4eBSGgLiubTusJgZF3hlNZy0yo.V7LIx98qlPVM2"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["username", "admin2"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]] Sent mail to user2@portablemind.com (17ms) Date: Tue, 05 Jun 2012 17:13:17 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce766dbe7c0_ff8a817f4f8c344f8@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:17.805215' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:17.813652' WHERE "user_preferences"."id" = 8  (0.8ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:17.815888' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:17.828529' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:17.829843' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:17.833971' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:13:17.837829' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:13:17.853509', "updated_at" = '2012-06-05 21:13:17.853509' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["crypted_password", "$2a$10$PDfEVRa5JFP2YWwBxruOQ.z4NHzV1hKgWrqhEbAD4/P0vIlXnKn0u"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:13:17 UTC +00:00]] Sent mail to user3@portablemind.com (14ms) Date: Tue, 05 Jun 2012 17:13:17 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce766df31e9_ff8a817f4f8c3453e@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:18.019596' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["user_id", 3]]  (1.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:18.027543' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:18.030012' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:18.040590' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:18.041850' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:18.045160' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:13:18.048073' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:13:18.053525' WHERE "users"."id" = 3 Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.4ms)  (1.3ms) rollback transaction  (0.3ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:13:18.068253', "updated_at" = '2012-06-05 21:13:18.068253' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (1.1ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["crypted_password", "$2a$10$ksEvqejidJOQnpry8jVJ1uO8fBEeSZwwGhcQoRfOR7PYvrbdz2nBu"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]] Sent mail to user4@portablemind.com (13ms) Date: Tue, 05 Jun 2012 17:13:18 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce766e323ad_ff8a817f4f8c346bb@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:18.228469' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:18.236509' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:18.238012' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:18.249524' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:18.251158' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["user_id", nil]]  (339.7ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:18.255391' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:13:18.598692' WHERE "users"."id" = 3 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (29.9ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:13:18 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:13:18.938182' WHERE "users"."id" = 3 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (198.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" IS NULL) LIMIT 1 SQL (94.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]] SQL (0.7ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (85.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (11.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (32.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (4.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:13:19.751691', "updated_at" = '2012-06-05 21:13:19.751691' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.8ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:13:19.808244', "updated_at" = '2012-06-05 21:13:19.808244' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.9ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:13:19.850279', "updated_at" = '2012-06-05 21:13:19.850279' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4)  (12.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:13:19.883920', "updated_at" = '2012-06-05 21:13:19.883920' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 4) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:13:19.959625', "updated_at" = '2012-06-05 21:13:19.959625' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:13:19 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 4)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" IS NULL AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]]  (1.8ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.7ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["xtype", nil]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["secured_record_id", 12], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 12], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]]  (2.4ms) commit transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:20.284852' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:20.293609' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:20.295156' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:20.306395' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:20.307730' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:20.311460' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (9.7ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["username", "employee_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:20.442121' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:20.450789' WHERE "user_preferences"."id" = 8  (0.4ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:20.452360' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.3ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:20.465488' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:20.466904' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:20.470836' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["username", "admin_test"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_id", 10], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:20.492019' WHERE "user_preferences"."id" = 10 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_id", 11], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:20.500669' WHERE "user_preferences"."id" = 11  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:13:20.502207' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 12 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 13], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_id", 12], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 13, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:20.512536' WHERE "user_preferences"."id" = 12  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:13:20.513892' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 13 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:13:20.517383' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 14  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]] CapabilityType Load (69.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (22, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (1.1ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:20.646963' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:20.655961' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:20.657428' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:13:20.670950' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:20.672337' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:13:20.676048' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:13:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capability_id" = 6 SQL (0.1ms) DELETE FROM "capabilities" WHERE "capabilities"."id" = ? [["id", 6]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 21 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 21]]  (0.0ms) RELEASE SAVEPOINT active_record_1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (1.1ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 12 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 12]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 12 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 19 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 19]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 18 SQL (0.3ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 18]]  (2.9ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 6]]  (1.5ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.1ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.7ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.5ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.3ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.3ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.1ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.3ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (3.9ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.3ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.3ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.6ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.8ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.7ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (1.0ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (1.9ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.4ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.5ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.7ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.7ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.6ms) commit transaction  (3.2ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.1ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.5ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (6.8ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00]]  (2.9ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:06 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (3.0ms) commit transaction  (2.6ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (1.5ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.5ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-05 21:14:07.503456' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-05 21:14:07.507142' WHERE "preference_types"."id" = 4  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2012-06-05 21:14:07.510029' WHERE "preference_types"."id" = 1  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2012-06-05 21:14:07.512028' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'shared_notesgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 SQL (0.4ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["xtype", "shared_notesgrid"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 1) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'shared_notesgrid' AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'shared_notes_grid' AND "widgets"."id" != 1) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 2]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_management' AND "widgets"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_rolemanagementpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 3]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_rolemanagementpanel' AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'role_management' AND "widgets"."id" != 3) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_personalinfopanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'user_personal_info' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_personalinfopanel' AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'user_personal_info' AND "widgets"."id" != 4) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Application Role Management"], ["icon", "icon-document"], ["internal_identifier", "application_role_management"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["xtype", "systemmanagement_applicationrolemanagment"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 5  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (5, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 5]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'systemmanagement_applicationrolemanagment' AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_role_management' AND "widgets"."id" != 5) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 5 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "System Management"], ["icon", "icon-monitor"], ["internal_identifier", "system_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.SystemManagement"], ["shortcut_id", "system_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 5) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'contactmechanismgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["xtype", "contactmechanismgrid"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'contactmechanismgrid' AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_contact_management' AND "widgets"."id" != 6) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'partygrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_management_widget' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["xtype", "partygrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["secured_record_id", 7], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'partygrid' AND "widgets"."id" != 7) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_management_widget' AND "widgets"."id" != 7) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:07 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["weight", nil]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2012-06-05 21:14:08.020052', "updated_at" = '2012-06-05 21:14:08.020052' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.5ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2012-06-05 21:14:08.114380', "updated_at" = '2012-06-05 21:14:08.114380' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.2ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["username", "admin"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:08.286269' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:08.294621' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:14:08.296060' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:08.319943' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:14:08.321349' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:14:08.339561' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'zzypH3JQzpSXdHjGDtws', "crypted_password" = '$2a$10$B3caX9O.vIDLgA1JwE67KOrd39QDLOXJb9Mohxzj/SNmsvOtfMmLG', "updated_at" = '2012-06-05 21:14:08.507032' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 8  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (8, 1) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'truenorth@gmail.com' LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:08.536671' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:08.544166' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:14:08.545180' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:08.554051' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:14:08.555050' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:14:08.557691' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 2, "salt" = 'TbJ9By1FPVAsz7KDJvzs', "crypted_password" = '$2a$10$GGH7yAWJGvFvkfHlqwzIN.yDTdd/TGOPfYR77SJliUepmfHz7yGAi', "updated_at" = '2012-06-05 21:14:08.723457' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2012-06-05 21:14:08.725365' WHERE "users"."id" = 2 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 9  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (9, 1) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (5.5ms) commit transaction  (3.1ms) insert into data_migrations (version) values ('20110728201729')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 06 Jun 2012 07:00:01 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]]  (2.6ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110802200222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.1ms) begin transaction DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1  (3.6ms) commit transaction  (2.7ms) insert into data_migrations (version) values ('20110817160743')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["version", #]]  (2.4ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110913145838')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["description", "Edit"], ["internal_identifier", "edit"], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Tue, 05 Jun 2012 21:14:08 UTC +00:00]] DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 3 and resource = 'User') LIMIT 1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 10  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (10, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 1) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 2 and resource = 'User') LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 11  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (11, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 3 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 2) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 3) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 4 and resource = 'Note') LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 4], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 2) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 4) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 2 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 14  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (14, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 5)  (3.0ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20111108183739')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.1ms) begin transaction OrganizerApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.3ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 6 SQL (0.1ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 6 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 6]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 9 SQL (0.1ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 9]] Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'phonenumbergrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'phone_number_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["xtype", "phonenumbergrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["secured_record_id", 8], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 8 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'emailaddressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'email_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["xtype", "emailaddressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["secured_record_id", 9], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 9], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 9 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'postaladdressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'postal_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["xtype", "postaladdressgrid"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["secured_record_id", 10], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 10], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 10 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (4.0ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20111108183740')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.1ms) begin transaction AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types"  AuditLogType Load (0.3ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.5ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 2 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 3 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 4 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.3ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (61.7ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 5 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.3ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.3ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 6 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (2.0ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20111111144706')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120109173616'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('file_downloader') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", "File Downloader"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "file_downloader"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]]  (2.8ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20120109173616')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'userinfo' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 SQL (0.5ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["xtype", "userinfo"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["secured_record_id", 11], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 11], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 11) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (18, 1) Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1  (3.6ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20120229160222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.1ms) begin transaction  (0.0ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20120405193721')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.1ms) commit transaction  (2.6ms) insert into data_migrations (version) values ('20120411180756')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120413000515'  (0.1ms) begin transaction User Load (0.3ms) SELECT "users".* FROM "users" SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["user_id", 1]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["user_id", 2]]  (2.3ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20120413000515')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'configuration_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:09 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]]  (3.9ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20120418164215')  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (9.2ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:14:10.223957', "updated_at" = '2012-06-05 21:14:10.223957' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00], ["crypted_password", "$2a$10$Yt7oUctPmihkxanRF5/cqeMKYID5eXpigJsHO3pyEB1R4ixDUz6gu"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00], ["username", "admin1"]] SQL (0.6ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:14:10 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (4.5ms) Sent mail to user1@portablemind.com (104ms) Date: Tue, 05 Jun 2012 17:14:10 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce76a2dfaf2_ff9e80443948949df@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]] SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:11.117241' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:11.127232' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:11.129050' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:11.162993' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:11.164830' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:11.186621' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:14:11.191239' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:14:11.286668' WHERE "users"."id" = 3 Completed 200 OK in 17ms (Views: 2.6ms | ActiveRecord: 1.5ms)  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]]  (1.7ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:14:11.300255', "updated_at" = '2012-06-05 21:14:11.300255' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["crypted_password", "$2a$10$O5ifdybwAplB00bwaYko8.6F5ZfYqsPuSjjwOml3xfIu8B.ccES4e"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]] Sent mail to user2@portablemind.com (14ms) Date: Tue, 05 Jun 2012 17:14:11 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce76a38c922_ff9e8044394895046@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:11.599523' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:11.607234' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:11.608457' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:11.619303' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:11.620616' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:11.624003' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:14:11.626936' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 0ms  (1.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:14:11.639134', "updated_at" = '2012-06-05 21:14:11.639134' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["crypted_password", "$2a$10$4NjeWu7YzffV1XdJyLO0i.rehTWmr9seObRUKDF976DcP5PrT/ACm"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]] Sent mail to user3@portablemind.com (15ms) Date: Tue, 05 Jun 2012 17:14:11 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce76a3bcc8c_ff9e804439489513e@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:11.798120' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:11.812407' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:11.814199' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:11.827712' WHERE "user_preferences"."id" = 9  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:11.830442' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["user_id", nil]]  (0.4ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:11.836769' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:14:11.841244' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:14:11.847041' WHERE "users"."id" = 3 Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms)  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["weight", 180]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:14:11.930174', "updated_at" = '2012-06-05 21:14:11.930174' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:14:11 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["crypted_password", "$2a$10$jOIQc9K7zHhk3Ce.SzKFluYnT3tqDASqxGqsxsQrJz3tKxMODRqIm"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]] Sent mail to user4@portablemind.com (15ms) Date: Tue, 05 Jun 2012 17:14:12 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce76a411d4a_ff9e8044394895224@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:12.100914' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:12.110880' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:12.112283' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:12.125506' WHERE "user_preferences"."id" = 9  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:12.127359' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:12.132542' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:14:12.135668' WHERE "users"."id" = 3 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]]  (0.6ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:14:12.285696' WHERE "users"."id" = 3 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (3.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (103.0ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" IS NULL) LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (5.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (220.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (153.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:14:12 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (159.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (160.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:14:13.132328', "updated_at" = '2012-06-05 21:14:13.132328' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4)  (168.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (182.3ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["weight", 180]] SQL (130.7ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:14:13.614836', "updated_at" = '2012-06-05 21:14:13.614836' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:13 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:14:14.076843', "updated_at" = '2012-06-05 21:14:14.076843' WHERE "individuals"."id" = 3 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (1.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.7ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:14:14.102376', "updated_at" = '2012-06-05 21:14:14.102376' WHERE "individuals"."id" = 2 Party Load (0.4ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 4) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:14:14.175882', "updated_at" = '2012-06-05 21:14:14.175882' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 4)  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (5.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (1.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.3ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (1.0ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (3.2ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.3ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.7ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["secured_record_id", 12], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 12], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (3.4ms) commit transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:14.463250' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:14.471820' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:14.473153' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (3.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:14.491515' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:14.492869' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:14.496550' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) SAVEPOINT active_record_1  (122.4ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (2.4ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["username", "employee_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:14.809854' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:14.818625' WHERE "user_preferences"."id" = 8  (0.7ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:14.820018' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:14.834330' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:14.835970' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:14.839948' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_id", 10], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:14.857783' WHERE "user_preferences"."id" = 10 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_id", 11], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:14.865959' WHERE "user_preferences"."id" = 11  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:14:14.867416' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 12 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 13], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_id", 12], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 13, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:14.878124' WHERE "user_preferences"."id" = 12  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:14:14.879631' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 13 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:14:14.883806' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 14  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (22, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (11.6ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:14.952215' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:14.960799' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:14.962157' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:14:14.976274' WHERE "user_preferences"."id" = 9  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:14.978111' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:14:14.983334' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:14:14 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.1ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20 CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capability_id" = 6 SQL (0.1ms) DELETE FROM "capabilities" WHERE "capabilities"."id" = ? [["id", 6]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1  (0.2ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 21 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 21]]  (0.0ms) RELEASE SAVEPOINT active_record_1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (1.3ms) rollback transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 12 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 12]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 12 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 19 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 19]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 18 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 18]]  (2.9ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 6]]  (1.9ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.6ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (3.2ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.3ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.3ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.5ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.7ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.3ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.3ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.1ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.3ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.3ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.1ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.1ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.9ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.3ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.3ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (2.8ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.2ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.3ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.1ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.3ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.8ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (1.5ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.4ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.9ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.7ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.7ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.5ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.1ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.1ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.1ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.1ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.1ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) select sqlite_version(*)  (3.3ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (6.5ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:35 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 05 Jun 2012 21:15:35 UTC +00:00]]  (3.0ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (1.0ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (3.5ms) commit transaction  (2.6ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.4ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["value", "blue.gif"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.5ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-05 21:15:36.963343' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-05 21:15:36.967032' WHERE "preference_types"."id" = 4  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2012-06-05 21:15:36.969699' WHERE "preference_types"."id" = 1  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2012-06-05 21:15:36.971478' WHERE "preference_types"."id" = 2 NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:15:36 UTC +00:00]] Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'shared_notesgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 SQL (0.4ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["xtype", "shared_notesgrid"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 1) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'shared_notesgrid' AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'shared_notes_grid' AND "widgets"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 2]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_management' AND "widgets"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_rolemanagementpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 3]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_rolemanagementpanel' AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'role_management' AND "widgets"."id" != 3) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_personalinfopanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'user_personal_info' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_personalinfopanel' AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'user_personal_info' AND "widgets"."id" != 4) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_role_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", "Application Role Management"], ["icon", "icon-document"], ["internal_identifier", "application_role_management"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["xtype", "systemmanagement_applicationrolemanagment"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 5  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (5, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 5]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'systemmanagement_applicationrolemanagment' AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_role_management' AND "widgets"."id" != 5) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 5 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", "System Management"], ["icon", "icon-monitor"], ["internal_identifier", "system_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.SystemManagement"], ["shortcut_id", "system_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 5) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'contactmechanismgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["xtype", "contactmechanismgrid"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'contactmechanismgrid' AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_contact_management' AND "widgets"."id" != 6) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'partygrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_management_widget' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["xtype", "partygrid"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["secured_record_id", 7], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'partygrid' AND "widgets"."id" != 7) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_management_widget' AND "widgets"."id" != 7) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["weight", nil]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2012-06-05 21:15:37.462509', "updated_at" = '2012-06-05 21:15:37.462509' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.4ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]]  (0.2ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2012-06-05 21:15:37.553847', "updated_at" = '2012-06-05 21:15:37.553847' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.2ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["username", "admin"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:37.722372' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:37.730273' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:15:37.731864' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:37.754892' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:15:37.756284' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-05 21:15:37.774344' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'x49dep5vWXsHzdDnHuey', "crypted_password" = '$2a$10$iWW7B9aqeaFPHc2qKAQnVeimzIqunEmKv4F/9gI2.BkpbaJQKFOT6', "updated_at" = '2012-06-05 21:15:37.941427' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 8  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (8, 1) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'truenorth@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["username", "truenorth"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:37.967092' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:37.972920' WHERE "user_preferences"."id" = 5  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:15:37.973939' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:37.981745' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:15:37.982737' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:15:37 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-05 21:15:37.985358' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 2, "salt" = 'amxafcfuqXzAqP3Akv37', "crypted_password" = '$2a$10$WF.2YNxGtfiDEOjwHJb0COYkAmomPhaEsb.EIu6.xwOKMclHHg5Hu', "updated_at" = '2012-06-05 21:15:38.148819' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2012-06-05 21:15:38.150552' WHERE "users"."id" = 2 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 9  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (9, 1) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (6.3ms) commit transaction  (2.6ms) insert into data_migrations (version) values ('20110728201729')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 06 Jun 2012 07:00:01 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]]  (3.0ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110802200222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.1ms) begin transaction DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1  (3.7ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20110817160743')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["version", #]]  (3.0ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110913145838')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "Edit"], ["internal_identifier", "edit"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 3 and resource = 'User') LIMIT 1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 10  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (10, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 1) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 2 and resource = 'User') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 11  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (11, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 3 and resource = 'Note') LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 2) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 3) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 4 and resource = 'Note') LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 4], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 2) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 4) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 2 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 14  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (14, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 5)  (2.4ms) commit transaction  (2.7ms) insert into data_migrations (version) values ('20111108183739')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.1ms) begin transaction OrganizerApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.3ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 6 SQL (0.1ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.2ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 6 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 6]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 9 SQL (0.1ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 9]] Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'phonenumbergrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'phone_number_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["xtype", "phonenumbergrid"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["secured_record_id", 8], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 8 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'emailaddressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'email_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["xtype", "emailaddressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["secured_record_id", 9], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 9], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 9 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'postaladdressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'postal_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["xtype", "postaladdressgrid"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["secured_record_id", 10], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 10], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 10 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (4.1ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20111108183740')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.1ms) begin transaction AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types"  AuditLogType Load (0.3ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.5ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 2 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 3 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 4 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 5 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.3ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 6 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (1.8ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20111111144706')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120109173616'  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('file_downloader') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "File Downloader"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "file_downloader"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]]  (2.8ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20120109173616')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'userinfo' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 SQL (0.5ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["xtype", "userinfo"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["secured_record_id", 11], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 11], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 11) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (18, 1) Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1  (3.9ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20120229160222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.1ms) begin transaction  (0.0ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20120405193721')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.1ms) commit transaction  (2.9ms) insert into data_migrations (version) values ('20120411180756')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120413000515'  (0.1ms) begin transaction User Load (0.3ms) SELECT "users".* FROM "users" SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["user_id", 1]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["user_id", 2]]  (3.2ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20120413000515')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'configuration_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:38 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]]  (4.1ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20120418164215')  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (11.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:39 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:15:39 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:39 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:39 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:15:39.650206', "updated_at" = '2012-06-05 21:15:39.650206' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:39 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:39 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:39 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:15:39 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:39 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:15:39 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:39 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:15:39 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:39 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:15:39 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (1.1ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["crypted_password", "$2a$10$2YwQqg006pC0oba3pHJ2v.u4Q56WabKQbvV3fbkjBiXmx4PdCqYAW"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["username", "admin1"]] SQL (0.7ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (4.5ms) Sent mail to user1@portablemind.com (100ms) Date: Tue, 05 Jun 2012 17:15:40 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fce76fc4df7c_ffd580443948368f2@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]] SQL (0.8ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:40.513252' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:40.524853' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:40.527524' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:40.561991' WHERE "user_preferences"."id" = 9  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:40.564573' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:40.660341' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:15:40.665003' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.3ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.3ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:15:40.700344' WHERE "users"."id" = 3 Completed 200 OK in 19ms (Views: 2.4ms | ActiveRecord: 1.3ms)  (10.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:15:40.723638', "updated_at" = '2012-06-05 21:15:40.723638' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["crypted_password", "$2a$10$qpDth6nFe4vNq/pFbsLaiuX6fbvqXsvdgveYqsuoOYsS.DTf/WFI6"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["username", "admin2"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]] Sent mail to user2@portablemind.com (15ms) Date: Tue, 05 Jun 2012 17:15:40 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fce76fcd568a_ffd5804439483697@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.4ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:40.901584' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:40.912272' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:40.913828' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:40.926965' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:40.928729' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:40.932566' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:15:40.935688' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (11.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["weight", 180]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:15:40.960361', "updated_at" = '2012-06-05 21:15:40.960361' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:15:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["crypted_password", "$2a$10$Nv8USryT27NinPe0eTIoNOeRYAx.L6M17ARePMCjucJybEidBO6/O"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 05 Jun 2012 17:15:41 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fce76fd17cca_ffd580443948370bf@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:41.120149' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:41.128502' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:41.129969' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:41.140621' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:41.142023' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:41.145825' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:15:41.148993' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:15:41.154152' WHERE "users"."id" = 3 Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms)  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.9ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:15:41.228726', "updated_at" = '2012-06-05 21:15:41.228726' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["crypted_password", "$2a$10$Pou.9O27Z1YRzQcgmObvNuRnTenFfgFT3ap.EEWKaaDGuV7lyjQeK"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]] Sent mail to user4@portablemind.com (14ms) Date: Tue, 05 Jun 2012 17:15:41 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fce76fd57fc8_ffd5804439483711f@ol9079.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:41.384168' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:41.392080' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:41.393320' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:41.403657' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:41.404951' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:41.408326' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-05 21:15:41.411180' WHERE "users"."id" = 3 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-05 21:15:41.603053' WHERE "users"."id" = 3 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" IS NULL) LIMIT 1 SQL (0.8ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.4ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:15:41.716278', "updated_at" = '2012-06-05 21:15:41.716278' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:15:41.760994', "updated_at" = '2012-06-05 21:15:41.760994' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:15:41.796304', "updated_at" = '2012-06-05 21:15:41.796304' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4)  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:15:41.817170', "updated_at" = '2012-06-05 21:15:41.817170' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 4) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-05 21:15:41.887006', "updated_at" = '2012-06-05 21:15:41.887006' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (69.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 05 Jun 2012 21:15:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 4)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]]  (2.9ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["secured_record_id", 12], ["secured_record_type", "Widget"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 12], ["capable_model_record_type", "Widget"], ["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]]  (3.7ms) commit transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:42.157223' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:42.165582' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:42.166923' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:42.177066' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:42.178291' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:42.182189' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles"  Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (1.3ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["username", "employee_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", 3]]  (0.6ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:42.357945' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:42.367619' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:42.368944' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:42.382623' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:42.383898' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:42.387359' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_id", 10], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:42.405482' WHERE "user_preferences"."id" = 10 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_id", 11], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:42.413211' WHERE "user_preferences"."id" = 11  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:15:42.414601' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 12 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 13], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_id", 12], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 13, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:42.424655' WHERE "user_preferences"."id" = 12  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:15:42.425970' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 13 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-05 21:15:42.429454' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 14  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (22, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (1.4ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["username", "admin_test"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", 3]]  (0.4ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:42.484813' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:42.493287' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:42.494642' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-05 21:15:42.507172' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:42.508809' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-05 21:15:42.512666' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 05 Jun 2012 21:15:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capability_id" = 6 SQL (0.1ms) DELETE FROM "capabilities" WHERE "capabilities"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 21 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 21]]  (0.1ms) RELEASE SAVEPOINT active_record_1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (1.4ms) rollback transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 12 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 12]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 12 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 19 SQL (0.5ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 19]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 18 SQL (1.1ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 18]]  (6.7ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.5ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.9ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 6]]  (1.6ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.1ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.6ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" float, "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.3ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.3ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.3ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.4ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("valid_note_types")  (0.3ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.1ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.3ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.8ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.8ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.8ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.3ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.4ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.2ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.4ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.7ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.4ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.8ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) select sqlite_version(*)  (3.3ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (2.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.3ms) select max(version) as current_version from data_migrations  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (7.2ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:50 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Wed, 06 Jun 2012 13:10:50 UTC +00:00]]  (2.5ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.8ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.6ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (37.7ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.2ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["value", "purple.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["value", "planet.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.5ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-06 13:10:51.918048' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-06-06 13:10:51.921712' WHERE "preference_types"."id" = 4  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2012-06-06 13:10:51.924381' WHERE "preference_types"."id" = 1  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2012-06-06 13:10:51.926226' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 06 Jun 2012 13:10:51 UTC +00:00]] Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'shared_notesgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["xtype", "shared_notesgrid"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'shared_notesgrid' AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'shared_notes_grid' AND "widgets"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Widget"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Widget"], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 2]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_management' AND "widgets"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_rolemanagementpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Widget"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Widget"], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 3]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_rolemanagementpanel' AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'role_management' AND "widgets"."id" != 3) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_personalinfopanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'user_personal_info' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Widget"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Widget"], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_personalinfopanel' AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'user_personal_info' AND "widgets"."id" != 4) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", "Application Role Management"], ["icon", "icon-document"], ["internal_identifier", "application_role_management"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["xtype", "systemmanagement_applicationrolemanagment"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Widget"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Widget"], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 5  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (5, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 5]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'systemmanagement_applicationrolemanagment' AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_role_management' AND "widgets"."id" != 5) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 5 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", "System Management"], ["icon", "icon-monitor"], ["internal_identifier", "system_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.SystemManagement"], ["shortcut_id", "system_management-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Application"], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 5) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Application"], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'contactmechanismgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["xtype", "contactmechanismgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Widget"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Widget"], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'contactmechanismgrid' AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_contact_management' AND "widgets"."id" != 6) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'partygrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_management_widget' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["xtype", "partygrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["secured_record_id", 7], ["secured_record_type", "Widget"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Widget"], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'partygrid' AND "widgets"."id" != 7) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_management_widget' AND "widgets"."id" != 7) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Application"], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["weight", nil]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2012-06-06 13:10:52.423860', "updated_at" = '2012-06-06 13:10:52.423860' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.5ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (11.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]]  (0.3ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2012-06-06 13:10:52.521124', "updated_at" = '2012-06-06 13:10:52.521124' WHERE "organizations"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.2ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["username", "admin"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (66.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:52.740102' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:52.749980' WHERE "user_preferences"."id" = 2  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-06 13:10:52.752188' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:52.777822' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-06 13:10:52.779542' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 06 Jun 2012 13:10:52 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-06-06 13:10:52.800128' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = '7yqUnqUoUbGk27Weasrz', "crypted_password" = '$2a$10$NkaWl75q2SFIXSEcCMkMnu6hNbZFLn0PwD80rQb77R1oL5REjh7Wu', "updated_at" = '2012-06-06 13:10:53.003347' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 8  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (8, 1) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'truenorth@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:53.029535' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:53.035468' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-06 13:10:53.036416' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:53.044111' WHERE "user_preferences"."id" = 6  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-06 13:10:53.045094' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-06-06 13:10:53.047870' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 2, "salt" = 'pfgmo8DamhwiV1dw5SmX', "crypted_password" = '$2a$10$/PbpPRCgDvE0cr7NdIgWpOHiPIuInI7eBRifDwYuX7qDK6roy3Rby', "updated_at" = '2012-06-06 13:10:53.211819' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2012-06-06 13:10:53.213639' WHERE "users"."id" = 2 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 9  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (9, 1) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.8ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (7.2ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110728201729')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Thu, 07 Jun 2012 07:00:01 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]]  (2.4ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110802200222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.1ms) begin transaction DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Application"], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 5) User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1  (3.1ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110817160743')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["version", #]]  (2.2ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20110913145838')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.3ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "Edit"], ["internal_identifier", "edit"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 3 and resource = 'User') LIMIT 1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["resource", "User"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Capability"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 10  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (10, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 1) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 5 AND (capability_type_id = 2 and resource = 'User') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["resource", "User"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Capability"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 11  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (11, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 3 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Capability"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 2) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 3) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 4 and resource = 'Note') LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 4], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Capability"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 2) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 4) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 1 AND (capability_type_id = 2 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Capability"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 14  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (14, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 5)  (2.0ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20111108183739')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.1ms) begin transaction OrganizerApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.3ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 6 SQL (0.1ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 6 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 6]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 9 SQL (0.1ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 9]] Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'phonenumbergrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'phone_number_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["xtype", "phonenumbergrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["secured_record_id", 8], ["secured_record_type", "Widget"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Widget"], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 8 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 8 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'emailaddressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'email_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["xtype", "emailaddressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["secured_record_id", 9], ["secured_record_type", "Widget"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 9], ["capable_model_record_type", "Widget"], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 9 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 9 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'postaladdressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'postal_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["xtype", "postaladdressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["secured_record_id", 10], ["secured_record_type", "Widget"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 10], ["capable_model_record_type", "Widget"], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 10 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 10 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (3.6ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20111108183740')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.1ms) begin transaction AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types"  AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.5ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.3ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 2 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 3 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 4 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 5 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.3ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 6 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (2.1ms) commit transaction  (1.8ms) insert into data_migrations (version) values ('20111111144706')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120109173616'  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] Role Exists (0.1ms) SELECT 1 FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('file_downloader') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "File Downloader"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "file_downloader"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]]  (2.3ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20120109173616')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" = 'userinfo' LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 SQL (0.5ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["xtype", "userinfo"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["secured_record_id", 11], ["secured_record_type", "Widget"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 11], ["capable_model_record_type", "Widget"], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 11) Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (18, 1) Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."xtype" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE ("widgets"."internal_identifier" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1  (3.4ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20120229160222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.1ms) begin transaction  (0.0ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20120405193721')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.1ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20120411180756')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120413000515'  (0.1ms) begin transaction User Load (0.4ms) SELECT "users".* FROM "users" SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["user_id", 1]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["user_id", 2]]  (2.3ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20120413000515')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'configuration_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Application"], ["created_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:53 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Application' LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]]  (3.3ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20120418164215')  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (8.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:54 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 06 Jun 2012 13:10:54 UTC +00:00], ["weight", 180]] SQL (1.0ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:54 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:54 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-06 13:10:54.722276', "updated_at" = '2012-06-06 13:10:54.722276' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:54 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:54 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:54 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 06 Jun 2012 13:10:54 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:54 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 06 Jun 2012 13:10:54 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:54 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 06 Jun 2012 13:10:54 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:54 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 06 Jun 2012 13:10:54 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (28.1ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["crypted_password", "$2a$10$MxU/SyHjFdIr7bQJprI8VObWkfjBxoFrPCuSeo4ZjcWy2HExD2kRy"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["username", "admin1"]] SQL (0.6ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (5.7ms) Sent mail to user1@portablemind.com (108ms) Date: Wed, 06 Jun 2012 09:10:55 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <4fcf56df8c48d_1398d8044394888744@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:55.760796' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:55.771184' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:55.772943' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:55.808254' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:55.810121' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.9ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["user_id", nil]]  (0.4ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:55.902305' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-06 13:10:55.908589' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-06 13:10:55.937912' WHERE "users"."id" = 3 Completed 200 OK in 15ms (Views: 2.0ms | ActiveRecord: 1.1ms)  (5.7ms) rollback transaction  (1.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["weight", 180]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-06 13:10:55.957299', "updated_at" = '2012-06-06 13:10:55.957299' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 06 Jun 2012 13:10:55 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["crypted_password", "$2a$10$y41IwiC95l..6OTqMFkqae3TLMeugStXH1DC4ajfyW5Fue5a.DNTm"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["username", "admin2"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]] Sent mail to user2@portablemind.com (16ms) Date: Wed, 06 Jun 2012 09:10:56 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <4fcf56e0187c9_1398d80443948888a0@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:56.126841' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (1.7ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:56.140128' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:56.141916' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:56.153665' WHERE "user_preferences"."id" = 9  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:56.155430' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:56.159976' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-06 13:10:56.163735' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (13.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-06 13:10:56.211263', "updated_at" = '2012-06-06 13:10:56.211263' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["crypted_password", "$2a$10$WI5GTyK/gDsc4QjcXxWOJecf/DWnEYQp1d9hrW7mjRNNy5jm8XeAe"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["username", "admin3"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]] Sent mail to user3@portablemind.com (14ms) Date: Wed, 06 Jun 2012 09:10:56 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <4fcf56e054eab_1398d80443948889c3@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:56.374554' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:56.384382' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:56.386860' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:56.399481' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:56.400781' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:56.405121' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-06-06 13:10:56.408954' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-06 13:10:56.416377' WHERE "users"."id" = 3 Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.5ms)  (19.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-06 13:10:56.526631', "updated_at" = '2012-06-06 13:10:56.526631' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["crypted_password", "$2a$10$C28ldeAK84.MkDMmElqMfO7PIqy0TOTVME5ExJiX8NzW6y0IeIAYy"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]] Sent mail to user4@portablemind.com (13ms) Date: Wed, 06 Jun 2012 09:10:56 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <4fcf56e0a26fd_1398d80443948890af@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:56.687553' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:56.696009' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:56.697680' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:56.708644' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:56.710053' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:56.713697' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-06-06 13:10:56.716984' WHERE "users"."id" = 3 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-06-06 13:10:56.848284' WHERE "users"."id" = 3 Completed 200 OK in 67ms (Views: 0.7ms | ActiveRecord: 0.2ms)  (26.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" IS NULL) LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:56 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-06 13:10:57.046645', "updated_at" = '2012-06-06 13:10:57.046645' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4)  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-06 13:10:57.089339', "updated_at" = '2012-06-06 13:10:57.089339' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.2ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-06 13:10:57.150180', "updated_at" = '2012-06-06 13:10:57.150180' WHERE "individuals"."id" = 3 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4)  (1.0ms) rollback transaction  (0.2ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-06 13:10:57.171644', "updated_at" = '2012-06-06 13:10:57.171644' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 4) RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 1 LIMIT 1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" WHERE "relationship_types"."id" = 2 LIMIT 1  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-06-06 13:10:57.252953', "updated_at" = '2012-06-06 13:10:57.252953' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE (party_id_from = 4)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["value", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (2.9ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["secured_record_id", 12], ["secured_record_type", "Widget"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 12], ["capable_model_record_type", "Widget"], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (3.1ms) commit transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:57.527215' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:57.535392' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:57.536644' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:57.546698' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:57.547932' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:57.551328' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (1.1ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["username", "employee_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:57.732385' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:57.740717' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:57.742025' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:57.755015' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:57.756347' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:57.759917' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "User"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_id", 10], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:57.777458' WHERE "user_preferences"."id" = 10 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_id", 11], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:57.785315' WHERE "user_preferences"."id" = 11  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-06 13:10:57.786604' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 12 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 13], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_id", 12], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 13, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:57.797113' WHERE "user_preferences"."id" = 12  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-06 13:10:57.798455' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 13 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-06-06 13:10:57.801798' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 14  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (22, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (1.3ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:57.857391' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:57.865654' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:57.866969' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-06-06 13:10:57.879610' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:57.880977' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-06-06 13:10:57.884539' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Wed, 06 Jun 2012 13:10:57 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (18, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capability_id" = 6 SQL (0.1ms) DELETE FROM "capabilities" WHERE "capabilities"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 21 SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 21]]  (0.0ms) RELEASE SAVEPOINT active_record_1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" WHERE "capabilities_capable_models"."capable_model_id" = 18 AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (1.4ms) rollback transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1  (0.0ms) begin transaction  (0.1ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 12 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 12]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 12 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 19 SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 19]]  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capable_model_id" = 18 SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 18]]  (3.0ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 6]]  (2.2ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.5ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.4ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("users")  (0.6ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) PRAGMA index_list("users")  (0.1ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.1ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.3ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.5ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.1ms) PRAGMA index_list("sessions")  (0.1ms) PRAGMA index_info('index_sessions_on_session_id')  (0.2ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.3ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.2ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.1ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.2ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.3ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "width" varchar(255), "height" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.5ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.1ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.2ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.1ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.3ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.3ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.1ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" decimal(8,2), "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.1ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.1ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.1ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.1ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (3.8ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.3ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.3ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.5ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.4ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.4ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.9ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (1.8ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.6ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.7ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.4ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.6ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.7ms) commit transaction  (2.9ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.4ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.1ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.1ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.1ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) select sqlite_version(*)  (3.8ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (2.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (8.3ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]]  (1.8ms) commit transaction  (1.7ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.9ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.8ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (3.5ms) commit transaction  (2.6ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] Role Exists (0.1ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 21 Aug 2012 15:48:47 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["value", "planet.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.5ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-08-21 15:48:48.078769' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-08-21 15:48:48.082797' WHERE "preference_types"."id" = 4  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2012-08-21 15:48:48.085468' WHERE "preference_types"."id" = 1  (0.5ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2012-08-21 15:48:48.087952' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'shared_notesgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["xtype", "shared_notesgrid"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 1) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (1)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'shared_notesgrid' AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'shared_notes_grid' AND "widgets"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (1) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 2]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_management' AND "widgets"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (2) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_rolemanagementpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 3]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_rolemanagementpanel' AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'role_management' AND "widgets"."id" != 3) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (3) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_personalinfopanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'user_personal_info' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (4)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_personalinfopanel' AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'user_personal_info' AND "widgets"."id" != 4) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (4) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Application Role Management"], ["icon", "icon-document"], ["internal_identifier", "application_role_management"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["xtype", "systemmanagement_applicationrolemanagment"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 5  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (5, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 5]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'systemmanagement_applicationrolemanagment' AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_role_management' AND "widgets"."id" != 5) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 5 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (5) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "System Management"], ["icon", "icon-monitor"], ["internal_identifier", "system_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.SystemManagement"], ["shortcut_id", "system_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 5) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'contactmechanismgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["xtype", "contactmechanismgrid"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'contactmechanismgrid' AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_contact_management' AND "widgets"."id" != 6) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'partygrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_management_widget' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["xtype", "partygrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["secured_record_id", 7], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (7)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'partygrid' AND "widgets"."id" != 7) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_management_widget' AND "widgets"."id" != 7) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (7) CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.7ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (5.2ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["weight", nil]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2012-08-21 15:48:48.662520', "updated_at" = '2012-08-21 15:48:48.662520' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.4ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]]  (0.2ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2012-08-21 15:48:48.704878', "updated_at" = '2012-08-21 15:48:48.704878' WHERE "organizations"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.3ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["username", "admin"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:48.885902' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:48.893337' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-21 15:48:48.894617' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:48.918209' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-21 15:48:48.919924' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 15:48:48 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-21 15:48:48.940128' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'c4jAUyXMCuWUvxEfymwP', "crypted_password" = '$2a$10$l8Tv5NlNTJh1ghFteJKhZuhLTectWcOIL2KNT1zh0nDMw/Hr8hNLW', "updated_at" = '2012-08-21 15:48:49.101943' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 8  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (8, 1) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (8) Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'truenorth@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["username", "truenorth"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:49.130261' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:49.137872' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-21 15:48:49.138967' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:49.146865' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-21 15:48:49.147835' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-21 15:48:49.150386' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 2, "salt" = '4wzq1yQYZQSvKzFcNrqH', "crypted_password" = '$2a$10$igrgqyqFmZ9cBEmo4bcReOLnv03Y4HZXSeAHnWuf4hT4r3OJlpcwW', "updated_at" = '2012-08-21 15:48:49.308285' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2012-08-21 15:48:49.310141' WHERE "users"."id" = 2 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 9  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (9, 1) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (9) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (3.8ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20110728201729')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 22 Aug 2012 07:00:01 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]]  (2.5ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110802200222')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110816161238'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'audit_log_viewer' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "Audit Log Viewer"], ["icon", "icon-history"], ["internal_identifier", "audit_log_viewer"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.AuditLogViewer"], ["shortcut_id", "audit_log_viewer-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'audit_log_viewer' AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1  (3.0ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110816161238')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.1ms) begin transaction DesktopApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."id" != 6 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 6) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (8) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 6) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (9)  (3.8ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20110817160743')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["version", #]]  (1.6ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20110913145838')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "Edit"], ["internal_identifier", "edit"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' AND (capability_type_id = 3 and resource = 'User') LIMIT 1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 10  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (10, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 1) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' AND (capability_type_id = 2 and resource = 'User') LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 11  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (11, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (1) SQL (0.1ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (1) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 3 and resource = 'Note') LIMIT 1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (12)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 2) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 3) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 4 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 4], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (13)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 2) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 4) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 2 and resource = 'Note') LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 14  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (14, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 5)  (2.2ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20111108183739')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.1ms) begin transaction OrganizerApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.6ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (6) SQL (0.1ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (9) Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "applications_widgets" ON "applications"."id" = "applications_widgets"."application_id" WHERE "applications_widgets"."widget_id" = 6 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.1ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11)  (0.3ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 6 AND "applications_widgets"."application_id" IN (4) SQL (0.1ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6)  (0.2ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 6 AND "roles_secured_models"."role_id" IN (1, 2) SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 6]] SQL (0.1ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 9]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'phonenumbergrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'phone_number_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["xtype", "phonenumbergrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["secured_record_id", 8], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 8 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (15)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'emailaddressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'email_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["xtype", "emailaddressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["secured_record_id", 9], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 9], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 9 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (16)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'postaladdressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'postal_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["xtype", "postaladdressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["secured_record_id", 10], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 10], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 10 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (17)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (3.3ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20111108183740')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.1ms) begin transaction AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.5ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 2 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 3 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 4 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 5 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 6 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (2.1ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20111111144706')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120109173616'  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] Role Exists (0.1ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('file_downloader') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "File Downloader"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "file_downloader"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]]  (2.4ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20120109173616')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11) Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'userinfo' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 SQL (0.5ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["xtype", "userinfo"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["secured_record_id", 11], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 11], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:49 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 11) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (18, 1) Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1  (3.8ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20120229160222')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.1ms) begin transaction  (0.1ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20120405193721')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.1ms) commit transaction  (2.4ms) insert into data_migrations (version) values ('20120411180756')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120413000515'  (0.1ms) begin transaction User Load (0.5ms) SELECT "users".* FROM "users" SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00], ["user_id", 1]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00], ["user_id", 2]]  (2.4ms) commit transaction  (1.8ms) insert into data_migrations (version) values ('20120413000515')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'configuration_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00]] SQL (0.7ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1, 2, 3, 5, 6) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5, 7, 8, 12, 13) ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 7 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 7], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1, 2, 3, 5, 6) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5, 7, 8, 12, 13) ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 7 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 7], ["preferenced_record_type", "Application"]]  (3.4ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20120418164215')  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (74.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00], ["weight", 180]] SQL (0.8ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 15:48:50.811324', "updated_at" = '2012-08-21 15:48:50.811324' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 15:48:50 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["crypted_password", "$2a$10$quPbyCyxI8FXkcwegKGZu.svkrzHvle.15vbs16GUQN3TDS4TZU9e"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (5.0ms) Sent mail to user1@portablemind.com (112ms) Date: Tue, 21 Aug 2012 11:48:51 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <5033ade3937cb_555e3fc3f0434ce0151a@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:51.733094' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:51.743763' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:51.745503' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:51.853503' WHERE "user_preferences"."id" = 9  (0.6ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:51.855425' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:51.887411' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-08-21 15:48:51.892070' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.3ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-08-21 15:48:51.932448' WHERE "users"."id" = 3 Completed 200 OK in 28ms (Views: 2.0ms | ActiveRecord: 1.4ms)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 15:48:51.941677', "updated_at" = '2012-08-21 15:48:51.941677' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 15:48:51 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["crypted_password", "$2a$10$2YSoIDP6vNaLzP7Altynce4bFulvg7XVRRnH4.s9SQrVUy0QIqIjS"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]] Sent mail to user2@portablemind.com (14ms) Date: Tue, 21 Aug 2012 11:48:52 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <5033ade413019_555e3fc3f0434ce0162e@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:52.103409' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:52.111721' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:52.113190' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:52.124680' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:52.126089' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:52.130115' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-08-21 15:48:52.133289' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 15:48:52.236235', "updated_at" = '2012-08-21 15:48:52.236235' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["crypted_password", "$2a$10$pEkJpx.VP96Lhcv3JzMcd.DK8kOPaU3FIr8NVL28duf3CiTbGmE5m"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]] Sent mail to user3@portablemind.com (13ms) Date: Tue, 21 Aug 2012 11:48:52 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <5033ade45aa02_555e3fc3f0434ce017fe@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:52.393179' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:52.401280' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:52.402598' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:52.415550' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:52.416893' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:52.420277' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-08-21 15:48:52.423281' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.3ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-08-21 15:48:52.430355' WHERE "users"."id" = 3 Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.5ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 15:48:52.458220', "updated_at" = '2012-08-21 15:48:52.458220' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["crypted_password", "$2a$10$yuDK0C0ZfhRxUbMDwVCIWexSW2bzoUD0W2.dmeEdYkD6QVqoOmSOu"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["username", "admin4"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]] Sent mail to user4@portablemind.com (13ms) Date: Tue, 21 Aug 2012 11:48:52 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <5033ade48eab2_555e3fc3f0434ce01812@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:52.605906' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:52.613122' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:52.614418' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:52.627134' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:52.628392' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:52.631957' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-08-21 15:48:52.635139' WHERE "users"."id" = 3 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-08-21 15:48:52.829420' WHERE "users"."id" = 3 Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.2ms)  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" IS NULL) LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.7ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 15:48:52.935824', "updated_at" = '2012-08-21 15:48:52.935824' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 15:48:52.979276', "updated_at" = '2012-08-21 15:48:52.979276' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 15:48:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 15:48:53.083727', "updated_at" = '2012-08-21 15:48:53.083727' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 15:48:53.100810', "updated_at" = '2012-08-21 15:48:53.100810' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (2.1ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 15:48:53.169214', "updated_at" = '2012-08-21 15:48:53.169214' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (1.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (1.7ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["xtype", nil]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["secured_record_id", 12], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 12], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (3.2ms) commit transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.9ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", 3]]  (0.4ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:53.473906' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:53.482128' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:53.483402' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:53.493479' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:53.494660' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:53.498302' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.0ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["username", "employee_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", 3]]  (0.4ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:53.582782' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:53.590855' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:53.592197' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:53.603332' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:53.604600' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:53.607921' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_id", 10], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:53.691577' WHERE "user_preferences"."id" = 10 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_id", 11], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:53.699796' WHERE "user_preferences"."id" = 11  (0.1ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-21 15:48:53.701122' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 12 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 13], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_id", 12], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 13, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:53.711383' WHERE "user_preferences"."id" = 12  (0.1ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-21 15:48:53.712655' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 13 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-21 15:48:53.716063' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 14  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (22, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.1ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", 3]]  (0.4ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:53.759181' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:53.768007' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:53.769382' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 15:48:53.781187' WHERE "user_preferences"."id" = 9  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:53.782738' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 15:48:53.787003' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.8ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 15:48:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" INNER JOIN "capabilities_capable_models" ON "capable_models"."id" = "capabilities_capable_models"."capable_model_id" WHERE "capabilities_capable_models"."capability_id" = 6  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capability_id" = 6 AND "capabilities_capable_models"."capable_model_id" IN (19) SQL (0.1ms) DELETE FROM "capabilities" WHERE "capabilities"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (21)  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 21 AND "roles_secured_models"."role_id" IN (1) SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 21]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.1ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.0ms) begin transaction Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "applications_widgets" ON "applications"."id" = "applications_widgets"."application_id" WHERE "applications_widgets"."widget_id" = 12 SQL (0.5ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 12]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 12 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (19) SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 19]] SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 19]]  (3.0ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.0ms) begin transaction SQL (0.3ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 6]]  (1.9ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (19.4ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (21.5ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.8ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.5ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.2ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "width" varchar(255), "height" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (3.2ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.3ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.7ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.1ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" decimal(8,2), "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.1ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (3.7ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.5ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.3ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.1ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.4ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.3ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.6ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.3ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.1ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.3ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (1.0ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.3ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (25.5ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.4ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.3ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.4ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.0ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.1ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.9ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.9ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (1.9ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.5ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.0ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.3ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.4ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (2.4ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.4ms) commit transaction  (3.5ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.1ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.1ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.1ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) select sqlite_version(*)  (2.6ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (60.3ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:23 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 21 Aug 2012 19:58:23 UTC +00:00]]  (2.1ms) commit transaction  (1.7ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (1.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.8ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (3.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (1.0ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.8ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (37.0ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (17.0ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.8ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:24 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (2.7ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (1.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.8ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.8ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] Role Load (0.6ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] Role Exists (0.1ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["value", "planet.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.6ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-08-21 19:58:25.750834' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.2ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-08-21 19:58:25.754975' WHERE "preference_types"."id" = 4  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.2ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2012-08-21 19:58:25.759572' WHERE "preference_types"."id" = 1  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.2ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2012-08-21 19:58:25.762600' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 19:58:25 UTC +00:00]] Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'shared_notesgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 SQL (0.4ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["xtype", "shared_notesgrid"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 1) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (1)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'shared_notesgrid' AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'shared_notes_grid' AND "widgets"."id" != 1) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (1) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 2]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_management' AND "widgets"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (2) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_rolemanagementpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 3]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_rolemanagementpanel' AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'role_management' AND "widgets"."id" != 3) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (3) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_personalinfopanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'user_personal_info' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (4)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_personalinfopanel' AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'user_personal_info' AND "widgets"."id" != 4) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (4) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (2.3ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_role_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", "Application Role Management"], ["icon", "icon-document"], ["internal_identifier", "application_role_management"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["xtype", "systemmanagement_applicationrolemanagment"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 5  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (5, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 5]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'systemmanagement_applicationrolemanagment' AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_role_management' AND "widgets"."id" != 5) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 5 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (5) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", "System Management"], ["icon", "icon-monitor"], ["internal_identifier", "system_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.SystemManagement"], ["shortcut_id", "system_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 5) Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'contactmechanismgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["xtype", "contactmechanismgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (6.5ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'contactmechanismgrid' AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.3ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_contact_management' AND "widgets"."id" != 6) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'partygrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_management_widget' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["xtype", "partygrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["secured_record_id", 7], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (7)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'partygrid' AND "widgets"."id" != 7) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_management_widget' AND "widgets"."id" != 7) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (7) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["weight", nil]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2012-08-21 19:58:26.588556', "updated_at" = '2012-08-21 19:58:26.588556' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.4ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2012-08-21 19:58:26.626983', "updated_at" = '2012-08-21 19:58:26.626983' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.3ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["username", "admin"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:26.831650' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:26.840081' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-21 19:58:26.841562' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:26.866815' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-21 19:58:26.868440' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 19:58:26 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-21 19:58:26.907602' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'NWq3MCMv2DoryzRJnZK1', "crypted_password" = '$2a$10$lpqrTd9fku6WVPY2DE3nnOQrpwWpJxeFXs8Xge.d.eKZgBm0oOxEa', "updated_at" = '2012-08-21 19:58:27.104399' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 8  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (8, 1) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (8) Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'truenorth@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:27.135532' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:27.142235' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-21 19:58:27.143308' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:27.152597' WHERE "user_preferences"."id" = 6  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-21 19:58:27.153721' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-21 19:58:27.156657' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 2, "salt" = '9VBc3NAjeYWHLpkPJwx9', "crypted_password" = '$2a$10$oymKsTo1chCN.grY6Vd6zeCYwMPWrfscvWP/nEqTqjYhuh.QJB.nm', "updated_at" = '2012-08-21 19:58:27.322848' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2012-08-21 19:58:27.324836' WHERE "users"."id" = 2 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 9  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (9, 1) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (87.6ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (9) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.8ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.4ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.4ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (5.0ms) commit transaction  (2.9ms) insert into data_migrations (version) values ('20110728201729')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.1ms) begin transaction SQL (1.4ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 22 Aug 2012 07:00:01 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]]  (2.2ms) commit transaction  (1.8ms) insert into data_migrations (version) values ('20110802200222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110816161238'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'audit_log_viewer' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["description", "Audit Log Viewer"], ["icon", "icon-history"], ["internal_identifier", "audit_log_viewer"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.AuditLogViewer"], ["shortcut_id", "audit_log_viewer-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'audit_log_viewer' AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1  (2.7ms) commit transaction  (1.8ms) insert into data_migrations (version) values ('20110816161238')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.1ms) begin transaction DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.6ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."id" != 6 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 6) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (8) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 6) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (9)  (3.5ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20110817160743')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["version", #]]  (1.9ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20110913145838')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["description", "Edit"], ["internal_identifier", "edit"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' AND (capability_type_id = 3 and resource = 'User') LIMIT 1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 10  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (10, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 1) CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' AND (capability_type_id = 2 and resource = 'User') LIMIT 1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.4ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 11  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (11, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (1) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (1) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 3 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (12)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 2) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 3) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 4 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 4], ["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (13)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 2) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 4) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 2 and resource = 'Note') LIMIT 1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 19:58:27 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 14  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (14, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 5)  (1.8ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20111108183739')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.1ms) begin transaction OrganizerApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (6) SQL (0.1ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (9) Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "applications_widgets" ON "applications"."id" = "applications_widgets"."application_id" WHERE "applications_widgets"."widget_id" = 6 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.1ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11)  (0.3ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 6 AND "applications_widgets"."application_id" IN (4) SQL (0.1ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6)  (0.2ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 6 AND "roles_secured_models"."role_id" IN (1, 2) SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 6]] SQL (0.1ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 9]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'phonenumbergrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'phone_number_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["xtype", "phonenumbergrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["secured_record_id", 8], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 8 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (15)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'emailaddressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'email_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["xtype", "emailaddressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["secured_record_id", 9], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 9], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 9 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (16)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'postaladdressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'postal_address_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["xtype", "postaladdressgrid"]] SQL (1.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["secured_record_id", 10], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 10], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 10 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (17)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (3.6ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20111108183740')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.1ms) begin transaction AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.5ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 2 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.3ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.5ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 3 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 4 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 5 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.3ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.4ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 6 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (2.2ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20111111144706')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120109173616'  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] Role Exists (0.1ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('file_downloader') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", "File Downloader"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "file_downloader"], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]]  (2.2ms) commit transaction  (1.7ms) insert into data_migrations (version) values ('20120109173616')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11) Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'userinfo' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 SQL (0.5ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["xtype", "userinfo"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["secured_record_id", 11], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 11], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 11) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (18, 1) Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1  (3.2ms) commit transaction  (1.8ms) insert into data_migrations (version) values ('20120229160222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.1ms) begin transaction  (0.0ms) commit transaction  (1.8ms) insert into data_migrations (version) values ('20120405193721')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.1ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20120411180756')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120413000515'  (0.1ms) begin transaction User Load (0.3ms) SELECT "users".* FROM "users" SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["user_id", 1]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["user_id", 2]]  (2.0ms) commit transaction  (1.8ms) insert into data_migrations (version) values ('20120413000515')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'configuration_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:28 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.4ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1, 2, 3, 5, 6) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5, 7, 8, 12, 13) ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 7 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 7], ["preferenced_record_type", "Application"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.4ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1, 2, 3, 5, 6) SQL (0.3ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5, 7, 8, 12, 13) ValidPreferenceType Load (0.4ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 7 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 7], ["preferenced_record_type", "Application"]]  (2.9ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20120418164215')  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (8.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:29 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 19:58:29 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 19:58:29.984241', "updated_at" = '2012-08-21 19:58:29.984241' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00], ["crypted_password", "$2a$10$fwQBKuJ9/yILVfT8YflIvuQdzC6qDCZ49UbR5uqI.tjK/ZOvPvR5O"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (5.6ms) Sent mail to user1@portablemind.com (44ms) Date: Tue, 21 Aug 2012 15:58:30 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <5033e866ce000_78193ffee5c34cd0638c4@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 19:58:30 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:31.039143' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:31.049904' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:31.051632' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:31.085727' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:31.087712' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:31.123407' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.4ms) UPDATE "users" SET "last_login_at" = '2012-08-21 19:58:31.130472' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.3ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-08-21 19:58:31.292787' WHERE "users"."id" = 3 Completed 200 OK in 115ms (Views: 2.1ms | ActiveRecord: 1.6ms)  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 19:58:31.324673', "updated_at" = '2012-08-21 19:58:31.324673' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["crypted_password", "$2a$10$gxx.egbUaX2pwewykpT/9OldQUvgmSZ7ih75tnY1zEmyy/0hI5fZG"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Tue, 21 Aug 2012 15:58:31 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <5033e8676f95b_78193ffee5c34cd063951@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:31.480298' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:31.488789' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:31.490201' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:31.501542' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:31.503202' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:31.506896' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-08-21 19:58:31.509993' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 0ms  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (1.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["weight", 180]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]]  (1.0ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 19:58:31.522418', "updated_at" = '2012-08-21 19:58:31.522418' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["crypted_password", "$2a$10$V1OFJtfmAHotz7f.zG1gyuH6C7cr1qg0A7RtTG3VhjILa0qi1gbNi"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]] Sent mail to user3@portablemind.com (15ms) Date: Tue, 21 Aug 2012 15:58:31 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <5033e867a174d_78193ffee5c34cd06404b@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.9ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:31.690324' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]] SQL (0.7ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:31.707043' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:31.708745' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:31.724835' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:31.726668' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:31.730814' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-08-21 19:58:31.734726' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.3ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-08-21 19:58:31.746119' WHERE "users"."id" = 3 Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.6ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 19:58:31.770307', "updated_at" = '2012-08-21 19:58:31.770307' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["crypted_password", "$2a$10$kEpuDg7iI6eaVNM6dVvUKeBFr.EVlVsS4iVkTaxEofFIvetW/Xbfa"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["username", "admin4"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 19:58:31 UTC +00:00]] Sent mail to user4@portablemind.com (16ms) Date: Tue, 21 Aug 2012 15:58:31 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <5033e867f1064_78193ffee5c34cd064129@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:32.013720' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:32.022167' WHERE "user_preferences"."id" = 8  (0.4ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:32.023580' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:32.039313' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:32.040698' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:32.044313' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-08-21 19:58:32.047381' WHERE "users"."id" = 3 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.6ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.5ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-08-21 19:58:32.220076' WHERE "users"."id" = 3 Completed 200 OK in 5ms (Views: 0.9ms | ActiveRecord: 0.2ms)  (2.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" IS NULL) LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.1ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 19:58:32.549663', "updated_at" = '2012-08-21 19:58:32.549663' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 19:58:32.596846', "updated_at" = '2012-08-21 19:58:32.596846' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.5ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 19:58:32.640676', "updated_at" = '2012-08-21 19:58:32.640676' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 19:58:32.659974', "updated_at" = '2012-08-21 19:58:32.659974' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.6ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.5ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 19:58:32.746589', "updated_at" = '2012-08-21 19:58:32.746589' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 Application Exists (0.3ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (1.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.2ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.3ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 21 Aug 2012 19:58:32 UTC +00:00]]  (1.9ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.7ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["xtype", nil]] SQL (0.9ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["secured_record_id", 12], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 12], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]]  (5.5ms) commit transaction  (0.1ms) begin transaction Widget Load (0.4ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.3ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", 3]]  (0.6ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:33.195719' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:33.205498' WHERE "user_preferences"."id" = 8  (0.4ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:33.206892' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:33.219218' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:33.220987' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", nil]]  (69.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:33.226424' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.6ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.1ms) SAVEPOINT active_record_1  (0.5ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.5ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.3ms) rollback transaction  (0.2ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (1.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["username", "employee_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:33.410607' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.3ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:33.421226' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:33.422955' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:33.439020' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:33.440467' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:33.444131' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_id", 10], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:33.467261' WHERE "user_preferences"."id" = 10 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_id", 11], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:33.476069' WHERE "user_preferences"."id" = 11  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-21 19:58:33.477386' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 12 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 13], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_id", 12], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 13, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:33.489370' WHERE "user_preferences"."id" = 12  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-21 19:58:33.490814' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 13 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-21 19:58:33.494888' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 14  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.6ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (22, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.2ms) RELEASE SAVEPOINT active_record_1  (1.0ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.3ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:33.545376' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:33.557020' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:33.558567' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 19:58:33.569719' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:33.571101' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 19:58:33.574940' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 19:58:33 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" INNER JOIN "capabilities_capable_models" ON "capable_models"."id" = "capabilities_capable_models"."capable_model_id" WHERE "capabilities_capable_models"."capability_id" = 6  (0.2ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capability_id" = 6 AND "capabilities_capable_models"."capable_model_id" IN (19) SQL (0.1ms) DELETE FROM "capabilities" WHERE "capabilities"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (21)  (0.2ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 21 AND "roles_secured_models"."role_id" IN (1) SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 21]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.0ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.3ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.1ms) begin transaction Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "applications_widgets" ON "applications"."id" = "applications_widgets"."application_id" WHERE "applications_widgets"."widget_id" = 12 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 12]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 12 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (19) SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 19]] SQL (0.3ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 19]]  (3.2ms) commit transaction User Load (0.5ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.3ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 6]]  (2.7ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.3ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (98.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (129.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.5ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.2ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.2ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "width" varchar(255), "height" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.3ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.3ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.3ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.1ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.3ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (73.7ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.3ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.3ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.1ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.5ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.4ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.1ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" decimal(8,2), "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.3ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (84.8ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.1ms) PRAGMA index_list("app_containers_applications")  (0.3ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.1ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.6ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.3ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.6ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.2ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.1ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.2ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (44.4ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (78.5ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (59.4ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (81.9ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (77.1ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (4.6ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.2ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.4ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.0ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.6ms) commit transaction  (3.3ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.1ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.1ms) PRAGMA index_list("party_relationships")  (0.1ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.1ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.1ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) select sqlite_version(*)  (3.1ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (3.9ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (46.9ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00]]  (2.0ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20110525001935')  (0.4ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.3ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (3.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:10:59 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.9ms) commit transaction  (1.8ms) insert into data_migrations (version) values ('20110609150135')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] Role Exists (0.1ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (1.0ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["value", "gradient.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["value", "purple.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["value", "planet.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["value", "portablemind.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.6ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-08-21 20:11:00.511088' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-08-21 20:11:00.514915' WHERE "preference_types"."id" = 4  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2012-08-21 20:11:00.517668' WHERE "preference_types"."id" = 1  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2012-08-21 20:11:00.519659' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'shared_notesgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 SQL (0.4ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["xtype", "shared_notesgrid"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 1) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (1)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'shared_notesgrid' AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'shared_notes_grid' AND "widgets"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (1) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 2]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_management' AND "widgets"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (2) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_rolemanagementpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 3]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_rolemanagementpanel' AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'role_management' AND "widgets"."id" != 3) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (3) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_personalinfopanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'user_personal_info' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (4)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_personalinfopanel' AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'user_personal_info' AND "widgets"."id" != 4) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (4) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Application Role Management"], ["icon", "icon-document"], ["internal_identifier", "application_role_management"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["xtype", "systemmanagement_applicationrolemanagment"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 5  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (5, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 5]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'systemmanagement_applicationrolemanagment' AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_role_management' AND "widgets"."id" != 5) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 5 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (5) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "System Management"], ["icon", "icon-monitor"], ["internal_identifier", "system_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.SystemManagement"], ["shortcut_id", "system_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 5) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'contactmechanismgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["xtype", "contactmechanismgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'contactmechanismgrid' AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_contact_management' AND "widgets"."id" != 6) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6) CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'partygrid' LIMIT 1 Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_management_widget' LIMIT 1 SQL (0.4ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["xtype", "partygrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["secured_record_id", 7], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:00 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (7)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'partygrid' AND "widgets"."id" != 7) LIMIT 1 Widget Exists (0.4ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_management_widget' AND "widgets"."id" != 7) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (7) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (52.3ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["weight", nil]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2012-08-21 20:11:01.242927', "updated_at" = '2012-08-21 20:11:01.242927' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.4ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2012-08-21 20:11:01.356994', "updated_at" = '2012-08-21 20:11:01.356994' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.2ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["username", "admin"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:01.553869' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:01.562056' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-21 20:11:01.563394' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:01.595984' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-21 20:11:01.597557' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["user_id", nil]]  (0.5ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-21 20:11:01.622224' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = '8uNcfys4xntaHRi8KqED', "crypted_password" = '$2a$10$YNx35xOBk63v5lLuS7MAjOZ.PWKg1HJmxLwMWiFMS4B0LiwR2yiwO', "updated_at" = '2012-08-21 20:11:01.797898' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 8  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (8, 1) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (8) Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'truenorth@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00]] SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:01.829046' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:01.835559' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-21 20:11:01.836674' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:01.845663' WHERE "user_preferences"."id" = 6  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-21 20:11:01.846742' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 20:11:01 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-21 20:11:01.849710' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 2, "salt" = 'rGDv1VaiQFFouzYsEi4t', "crypted_password" = '$2a$10$HhpRG4lTFcgKtZpX5dJKhO8TcACUD64xkchIOo1sXMDe44KndGaSG', "updated_at" = '2012-08-21 20:11:02.016737' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2012-08-21 20:11:02.019141' WHERE "users"."id" = 2 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 9  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (9, 1) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (9) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (6.5ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110728201729')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 22 Aug 2012 07:00:01 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]]  (3.4ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20110802200222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110816161238'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'audit_log_viewer' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Audit Log Viewer"], ["icon", "icon-history"], ["internal_identifier", "audit_log_viewer"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.AuditLogViewer"], ["shortcut_id", "audit_log_viewer-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'audit_log_viewer' AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1  (2.7ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20110816161238')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.1ms) begin transaction DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."id" != 6 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 6) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.7ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (8) User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.4ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 6) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (9)  (3.2ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110817160743')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["version", #]]  (2.0ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20110913145838')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Edit"], ["internal_identifier", "edit"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' AND (capability_type_id = 3 and resource = 'User') LIMIT 1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 10  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (10, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 1) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' AND (capability_type_id = 2 and resource = 'User') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["resource", "User"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 11  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (11, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (1) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (1) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.3ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 3 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (12)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 2) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 3) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 4 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 4], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.3ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (13)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 2) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 4) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 2 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 14  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (14, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 5)  (1.7ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20111108183739')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.1ms) begin transaction OrganizerApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.3ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (6) SQL (0.1ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (9) Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "applications_widgets" ON "applications"."id" = "applications_widgets"."application_id" WHERE "applications_widgets"."widget_id" = 6 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.1ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11)  (0.3ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 6 AND "applications_widgets"."application_id" IN (4) SQL (0.1ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 6]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6)  (0.2ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 6 AND "roles_secured_models"."role_id" IN (1, 2) SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 6]] SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 9]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'phonenumbergrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'phone_number_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["xtype", "phonenumbergrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["secured_record_id", 8], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 8 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (15)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'emailaddressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'email_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["xtype", "emailaddressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["secured_record_id", 9], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 9], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 9 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (16)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'postaladdressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'postal_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["xtype", "postaladdressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["secured_record_id", 10], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 10], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 10 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (17)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (3.5ms) commit transaction  (1.5ms) insert into data_migrations (version) values ('20111108183740')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.1ms) begin transaction AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.5ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 2 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 3 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 4 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 5 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 6 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (1.9ms) commit transaction  (1.7ms) insert into data_migrations (version) values ('20111111144706')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120109173616'  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] Role Exists (0.1ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('file_downloader') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "File Downloader"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "file_downloader"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]]  (2.6ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20120109173616')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11) Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'userinfo' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 SQL (0.5ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["xtype", "userinfo"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["secured_record_id", 11], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 11], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 11) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (18, 1) Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1  (3.1ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20120229160222')  (0.5ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.1ms) begin transaction  (0.0ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20120405193721')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.1ms) commit transaction  (6.7ms) insert into data_migrations (version) values ('20120411180756')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120413000515'  (0.1ms) begin transaction User Load (0.3ms) SELECT "users".* FROM "users" SQL (1.0ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["user_id", 1]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["user_id", 2]]  (1.8ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20120413000515')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.1ms) begin transaction Application Exists (0.3ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'configuration_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:02 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1, 2, 3, 5, 6) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5, 7, 8, 12, 13) ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.3ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 7 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 7], ["preferenced_record_type", "Application"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1, 2, 3, 5, 6) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5, 7, 8, 12, 13) ValidPreferenceType Load (0.3ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 7 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 7], ["preferenced_record_type", "Application"]]  (3.0ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20120418164215')  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (23.0ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:03 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 20:11:03 UTC +00:00], ["weight", 180]] SQL (5.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:03 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:03 UTC +00:00]]  (11.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 20:11:03.794958', "updated_at" = '2012-08-21 20:11:03.794958' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:03 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:03 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:04 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 20:11:04 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:04 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 20:11:04 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:04 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 20:11:04 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:04 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 20:11:04 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 20:11:04 UTC +00:00], ["crypted_password", "$2a$10$UV9P0YCPfEwYnaj30A6nhuwKXLBqHTA15L8DbE/GmWCijlaEcPSzG"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:04 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:04 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 20:11:04 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (5.3ms) Sent mail to user1@portablemind.com (142ms) Date: Tue, 21 Aug 2012 16:11:05 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <5033eb5924ffc_796f3ffee0434cd8266c3@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:05.472579' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:05.538569' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:05.540553' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:05.607977' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:05.610404' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:05.647505' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-08-21 20:11:05.651950' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (4.6ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.3ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-08-21 20:11:05.726772' WHERE "users"."id" = 3 Completed 200 OK in 51ms (Views: 2.1ms | ActiveRecord: 5.8ms)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00]]  (0.8ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 20:11:05.864032', "updated_at" = '2012-08-21 20:11:05.864032' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["crypted_password", "$2a$10$uGFCUItI2hkGtO/VG2y4D.zVJokaqoTHY9dlUS7HZDcZpM5L6VDfC"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 20:11:05 UTC +00:00]] Sent mail to user2@portablemind.com (20ms) Date: Tue, 21 Aug 2012 16:11:06 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <5033eb5a333b_796f3ffee0434cd8267e4@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]] SQL (6.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:06.055286' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.3ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:06.066742' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:06.068149' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:06.080564' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:06.082038' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:06.086040' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-08-21 20:11:06.089388' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 0ms  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 20:11:06.134085', "updated_at" = '2012-08-21 20:11:06.134085' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["crypted_password", "$2a$10$FzI0w39QkW1gh3ZuH39m8.BKeOvtu6Sw0cUrgemOUmU.sUXjmbHdG"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]] Sent mail to user3@portablemind.com (23ms) Date: Tue, 21 Aug 2012 16:11:06 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <5033eb5a447e0_796f3ffee0434cd8268f8@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", 3]]  (2.4ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:06.318839' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:06.334703' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:06.336171' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:06.348991' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:06.350842' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", nil]]  (0.4ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:06.355753' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-08-21 20:11:06.359841' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.4ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-08-21 20:11:06.377781' WHERE "users"."id" = 3 Completed 200 OK in 17ms (Views: 1.3ms | ActiveRecord: 0.7ms)  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["weight", 180]] SQL (0.7ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 20:11:06.398806', "updated_at" = '2012-08-21 20:11:06.398806' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["crypted_password", "$2a$10$3TcSJlNFxBzwMuv19gOwHeR7TQNkNONVvPGyBCqGvttK/j5037oyq"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["username", "admin4"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]] Sent mail to user4@portablemind.com (16ms) Date: Tue, 21 Aug 2012 16:11:06 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <5033eb5a871f7_796f3ffee0434cd826969@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", 3]]  (0.4ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:06.588787' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:06.601662' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:06.603407' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", 3]]  (0.4ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:06.617353' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:06.702244' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:06.706717' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-08-21 20:11:06.709932' WHERE "users"."id" = 3 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-08-21 20:11:06.848687' WHERE "users"."id" = 3 Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" IS NULL) LIMIT 1 SQL (0.9ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:06 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.4ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.8ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 20:11:07.028881', "updated_at" = '2012-08-21 20:11:07.028881' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (1.1ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 20:11:07.075348', "updated_at" = '2012-08-21 20:11:07.075348' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 20:11:07.112191', "updated_at" = '2012-08-21 20:11:07.112191' WHERE "individuals"."id" = 3 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 20:11:07.133468', "updated_at" = '2012-08-21 20:11:07.133468' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.3ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-21 20:11:07.200594', "updated_at" = '2012-08-21 20:11:07.200594' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.4ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (2.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["secured_record_id", 12], ["secured_record_type", "Widget"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 12], ["capable_model_record_type", "Widget"], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (2.9ms) commit transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", 3]]  (0.6ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:07.518772' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:07.527526' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:07.528865' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (1.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:07.543149' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:07.544429' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:07.548045' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.9ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["username", "employee_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:07.703790' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:07.712658' WHERE "user_preferences"."id" = 8  (0.4ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:07.714120' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:07.725493' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:07.727052' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:07.730593' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_id", 10], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:07.753211' WHERE "user_preferences"."id" = 10 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_id", 11], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:07.764760' WHERE "user_preferences"."id" = 11  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-21 20:11:07.766094' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 12 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 13], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_id", 12], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 13, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:07.776298' WHERE "user_preferences"."id" = 12  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-21 20:11:07.777694' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 13 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-21 20:11:07.781345' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 14  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.3ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (22, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.1ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:07.826701' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:07.835213' WHERE "user_preferences"."id" = 8  (1.0ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:07.836675' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-21 20:11:07.848672' WHERE "user_preferences"."id" = 9  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:07.850015' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-21 20:11:07.856497' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["resource", "Note"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Tue, 21 Aug 2012 20:11:07 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.1ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" INNER JOIN "capabilities_capable_models" ON "capable_models"."id" = "capabilities_capable_models"."capable_model_id" WHERE "capabilities_capable_models"."capability_id" = 6  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capability_id" = 6 AND "capabilities_capable_models"."capable_model_id" IN (19) SQL (0.1ms) DELETE FROM "capabilities" WHERE "capabilities"."id" = ? [["id", 6]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (21)  (0.2ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 21 AND "roles_secured_models"."role_id" IN (1) SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 21]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.1ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.0ms) begin transaction Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "applications_widgets" ON "applications"."id" = "applications_widgets"."application_id" WHERE "applications_widgets"."widget_id" = 12 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 12]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 12 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (19) SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 19]] SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 19]]  (3.1ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.0ms) begin transaction SQL (0.3ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 6]]  (1.7ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.5ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.4ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.0ms) begin transaction  (0.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("users")  (0.4ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.2ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("audit_logs")  (0.2ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.2ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.3ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.1ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.1ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "width" varchar(255), "height" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.2ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capable_models")  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("capabilities")  (0.2ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.1ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (2.4ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("parties")  (0.2ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.2ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("party_roles")  (0.2ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.3ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.2ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.2ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.1ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.2ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.3ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.1ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.2ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.2ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" decimal(8,2), "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.1ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("currencies")  (0.2ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.2ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.2ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.2ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.1ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.2ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.2ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.1ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.2ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.2ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (3.7ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preferences")  (0.2ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.2ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.2ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.2ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.2ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.2ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.0ms) PRAGMA index_list("app_containers_applications")  (0.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)  (0.0ms) PRAGMA index_list("applications_widgets")  (0.2ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("valid_configurations")  (0.2ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.5ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.5ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.3ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.3ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.6ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("attribute_types")  (0.2ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.2ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.0ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.7ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.1ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (2.6ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.9ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (2.0ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.6ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.6ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (1.8ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (1.7ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (1.4ms) commit transaction  (3.0ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.0ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.1ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.1ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.1ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.1ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.0ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.0ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.0ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.0ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.0ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.0ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.0ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.0ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.0ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.0ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.0ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.0ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.0ms) PRAGMA index_list("secured_models")  (0.0ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.0ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.0ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.0ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) select sqlite_version(*)  (2.2ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (8.3ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:35 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Wed, 22 Aug 2012 16:41:35 UTC +00:00]]  (2.0ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (0.8ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.9ms) commit transaction  (2.5ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.8ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.1ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] Role Exists (0.1ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["value", "blue.gif"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.5ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-08-22 16:41:36.738953' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-08-22 16:41:36.742613' WHERE "preference_types"."id" = 4  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2012-08-22 16:41:36.745238' WHERE "preference_types"."id" = 1  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2012-08-22 16:41:36.747060' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'shared_notesgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 SQL (0.4ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["xtype", "shared_notesgrid"]] SQL (0.7ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 1) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (1)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'shared_notesgrid' AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'shared_notes_grid' AND "widgets"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (1) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:36 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 2]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_management' AND "widgets"."id" != 2) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (2) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_rolemanagementpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 3]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_rolemanagementpanel' AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'role_management' AND "widgets"."id" != 3) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (3) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_personalinfopanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'user_personal_info' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.1ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (4)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_personalinfopanel' AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'user_personal_info' AND "widgets"."id" != 4) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (4) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_role_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", "Application Role Management"], ["icon", "icon-document"], ["internal_identifier", "application_role_management"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["xtype", "systemmanagement_applicationrolemanagment"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 5  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (5, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 5]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'systemmanagement_applicationrolemanagment' AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_role_management' AND "widgets"."id" != 5) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 5 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (5) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", "System Management"], ["icon", "icon-monitor"], ["internal_identifier", "system_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.SystemManagement"], ["shortcut_id", "system_management-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 5) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'contactmechanismgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["xtype", "contactmechanismgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'contactmechanismgrid' AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_contact_management' AND "widgets"."id" != 6) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'partygrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_management_widget' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["xtype", "partygrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["secured_record_id", 7], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (7)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'partygrid' AND "widgets"."id" != 7) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_management_widget' AND "widgets"."id" != 7) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (7) CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["weight", nil]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2012-08-22 16:41:37.307393', "updated_at" = '2012-08-22 16:41:37.307393' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.4ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2012-08-22 16:41:37.347613', "updated_at" = '2012-08-22 16:41:37.347613' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.2ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["username", "admin"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:37.526485' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:37.535048' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-22 16:41:37.537197' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:37.561693' WHERE "user_preferences"."id" = 3  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-22 16:41:37.563053' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-22 16:41:37.581328' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'WZTuokWeF5nsMySua37P', "crypted_password" = '$2a$10$YUmdwVtmy4wzgrrj2kDcx.MJIOBoImxvnoaq4Vwym04rzxmaXWiD2', "updated_at" = '2012-08-22 16:41:37.741910' WHERE "users"."id" = 1 User Exists (0.4ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 8  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (8, 1) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (8) Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'truenorth@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:37.772003' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:37.778355' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-22 16:41:37.779350' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:37.787276' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-22 16:41:37.788231' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 16:41:37 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-22 16:41:37.790859' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 2, "salt" = 'ebdUfMB99WRTPWpsdTt5', "crypted_password" = '$2a$10$OOIuDlh27QAo7DqqlQVmOOqUOjlpaMMd2nTBl.cZqshGdnvZAFFJa', "updated_at" = '2012-08-22 16:41:37.948445' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2012-08-22 16:41:37.950317' WHERE "users"."id" = 2 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 9  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (9, 1) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (9) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (5.3ms) commit transaction  (3.0ms) insert into data_migrations (version) values ('20110728201729')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Thu, 23 Aug 2012 07:00:01 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]]  (2.1ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110802200222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110816161238'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'audit_log_viewer' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Audit Log Viewer"], ["icon", "icon-history"], ["internal_identifier", "audit_log_viewer"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.AuditLogViewer"], ["shortcut_id", "audit_log_viewer-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.3ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'audit_log_viewer' AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1  (2.6ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20110816161238')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.1ms) begin transaction DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."id" != 6 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 6) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (8) User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 6) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.1ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (9)  (3.5ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20110817160743')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["version", #]]  (1.8ms) commit transaction  (2.0ms) insert into data_migrations (version) values ('20110913145838')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Edit"], ["internal_identifier", "edit"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] DesktopApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1) SQL (0.1ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' AND (capability_type_id = 3 and resource = 'User') LIMIT 1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["resource", "User"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 10  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (10, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 1) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' AND (capability_type_id = 2 and resource = 'User') LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["resource", "User"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 11  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (11, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (1) SQL (0.1ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (1) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 3 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (12)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 2) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 3) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 4 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 4], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 1) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (13)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 2) Capability Load (0.0ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 4) CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 2 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 14  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (14, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 5)  (2.0ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20111108183739')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.1ms) begin transaction OrganizerApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.1ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (6) SQL (0.1ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (9) Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "applications_widgets" ON "applications"."id" = "applications_widgets"."application_id" WHERE "applications_widgets"."widget_id" = 6 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.1ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11)  (0.3ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 6 AND "applications_widgets"."application_id" IN (4) SQL (0.1ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6)  (0.2ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 6 AND "roles_secured_models"."role_id" IN (1, 2) SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 6]] SQL (0.1ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 9]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'phonenumbergrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'phone_number_management' LIMIT 1 SQL (0.4ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["xtype", "phonenumbergrid"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["secured_record_id", 8], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 8 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (15)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 2) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'emailaddressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'email_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["xtype", "emailaddressgrid"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["secured_record_id", 9], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 9], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 9 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (16)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'postaladdressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'postal_address_management' LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["xtype", "postaladdressgrid"]] SQL (0.1ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["secured_record_id", 10], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 10], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 1) Widget Load (0.0ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 10 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (17)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (3.8ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20111108183740')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.1ms) begin transaction AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.5ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 2 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 3 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.4ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 4 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 5 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.3ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 6 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (2.3ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20111111144706')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120109173616'  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] Role Exists (0.1ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('file_downloader') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "File Downloader"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "file_downloader"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]]  (2.2ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20120109173616')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11) Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'userinfo' LIMIT 1 Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 SQL (0.5ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["xtype", "userinfo"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["secured_record_id", 11], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 11], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 11) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (18, 1) Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1  (3.5ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20120229160222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.1ms) begin transaction  (0.0ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20120405193721')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.1ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20120411180756')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120413000515'  (0.1ms) begin transaction User Load (0.3ms) SELECT "users".* FROM "users" SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["user_id", 1]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["user_id", 2]]  (2.5ms) commit transaction  (1.8ms) insert into data_migrations (version) values ('20120413000515')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'configuration_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.8ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] SQL (0.8ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:38 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.3ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.3ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1, 2, 3, 5, 6) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5, 7, 8, 12, 13) ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 7 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 7], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1, 2, 3, 5, 6) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5, 7, 8, 12, 13) ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 7 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 7], ["preferenced_record_type", "Application"]]  (2.6ms) commit transaction  (1.7ms) insert into data_migrations (version) values ('20120418164215')  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (8.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00], ["weight", 180]] SQL (0.6ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 16:41:39.566716', "updated_at" = '2012-08-22 16:41:39.566716' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00], ["crypted_password", "$2a$10$a.uhUHxN3iDbKCC8hVKwheHx97XU4DF3ryLh2xvSB87JXB2qy34N6"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00], ["username", "admin1"]] SQL (0.5ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 16:41:39 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (10.7ms) Sent mail to user1@portablemind.com (45ms) Date: Wed, 22 Aug 2012 12:41:40 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <50350bc44477b_b2983fefedc34cdc655bb@ol9045.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.9ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:40.577418' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:40.588248' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:40.589980' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["user_id", 3]]  (0.7ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:40.630265' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:40.632847' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:40.653726' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "users" SET "last_login_at" = '2012-08-22 16:41:40.658561' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.3ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) Rendered inline template (0.4ms) SQL (0.3ms) UPDATE "users" SET "last_activity_at" = '2012-08-22 16:41:40.700925' WHERE "users"."id" = 3 Completed 200 OK in 31ms (Views: 5.5ms | ActiveRecord: 1.5ms)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 16:41:40.779382', "updated_at" = '2012-08-22 16:41:40.779382' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["crypted_password", "$2a$10$TOn3.T8rXYgJlOyGc/R6ce6ErFCzvbpHA.oiKikHJ2bFnjERVfTOC"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["username", "admin2"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00]] Sent mail to user2@portablemind.com (15ms) Date: Wed, 22 Aug 2012 12:41:40 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <50350bc4e014c_b2983fefedc34cdc6567e@ol9045.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["user_id", 3]]  (0.7ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:40.942894' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:40.951837' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:40.953214' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.7ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:40.965302' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:40.966620' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:40.970014' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-08-22 16:41:40.972757' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 1ms  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 16:41:40 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 16:41:40.997418', "updated_at" = '2012-08-22 16:41:40.997418' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["crypted_password", "$2a$10$I1u7wlgA16iRJGqMtxJPfebUO5VZpf63DRuRuLcOw.IxIiW/GHlfy"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["username", "admin3"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]] Sent mail to user3@portablemind.com (14ms) Date: Wed, 22 Aug 2012 12:41:41 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <50350bc51eb25_b2983fefedc34cdc6577b@ol9045.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:41.148349' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:41.155707' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:41.156909' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:41.166964' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:41.168218' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:41.171724' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-08-22 16:41:41.174485' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.3ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-08-22 16:41:41.181669' WHERE "users"."id" = 3 Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.5ms)  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 16:41:41.194595', "updated_at" = '2012-08-22 16:41:41.194595' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["crypted_password", "$2a$10$YKfG1y61TsoDKUup/LRTUOPVyH83JkZzT3M9F3b93NqW8r4vjfY0e"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["username", "admin4"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]] Sent mail to user4@portablemind.com (14ms) Date: Wed, 22 Aug 2012 12:41:41 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <50350bc54f25a_b2983fefedc34cdc65846@ol9045.olcc.lan.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:41.347946' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:41.355618' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:41.356854' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:41.432015' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:41.433855' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:41.437947' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-08-22 16:41:41.442329' WHERE "users"."id" = 3 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-08-22 16:41:41.569291' WHERE "users"."id" = 3 Completed 200 OK in 4ms (Views: 0.7ms | ActiveRecord: 0.2ms)  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" IS NULL) LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 16:41:41.740361', "updated_at" = '2012-08-22 16:41:41.740361' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.9ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 16:41:41.783741', "updated_at" = '2012-08-22 16:41:41.783741' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 16:41:41.817986', "updated_at" = '2012-08-22 16:41:41.817986' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 16:41:41.834942', "updated_at" = '2012-08-22 16:41:41.834942' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (1.0ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 16:41:41.900874', "updated_at" = '2012-08-22 16:41:41.900874' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.5ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Wed, 22 Aug 2012 16:41:41 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]]  (2.3ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.6ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["secured_record_id", 12], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 12], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]]  (3.0ms) commit transaction  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", 3]]  (0.4ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:42.209518' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:42.217606' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:42.218949' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:42.229755' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:42.230962' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:42.234355' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.0ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.1ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["username", "employee_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", 3]]  (0.4ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:42.385578' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:42.393409' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:42.394817' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:42.408798' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:42.410154' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:42.414502' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_id", 10], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:42.431085' WHERE "user_preferences"."id" = 10 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_id", 11], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:42.438612' WHERE "user_preferences"."id" = 11  (0.1ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-22 16:41:42.439836' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 12 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 13], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_id", 12], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 13, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:42.449336' WHERE "user_preferences"."id" = 12  (0.1ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-22 16:41:42.450652' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 13 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-22 16:41:42.453890' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 14  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (22, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.1ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["username", "admin_test"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", 3]]  (0.4ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:42.496000' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:42.504689' WHERE "user_preferences"."id" = 8  (0.4ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:42.506679' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 16:41:42.519765' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:42.521096' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 16:41:42.524620' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 16:41:42 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" INNER JOIN "capabilities_capable_models" ON "capable_models"."id" = "capabilities_capable_models"."capable_model_id" WHERE "capabilities_capable_models"."capability_id" = 6  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capability_id" = 6 AND "capabilities_capable_models"."capable_model_id" IN (19) SQL (0.1ms) DELETE FROM "capabilities" WHERE "capabilities"."id" = ? [["id", 6]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (21)  (0.1ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 21 AND "roles_secured_models"."role_id" IN (1) SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 21]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (1.1ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.0ms) begin transaction Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "applications_widgets" ON "applications"."id" = "applications_widgets"."application_id" WHERE "applications_widgets"."widget_id" = 12 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 12]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 12 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (19) SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 19]] SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 19]]  (3.3ms) commit transaction User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.2ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.1ms) begin transaction SQL (0.3ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 6]]  (1.9ms) commit transaction Connecting to database specified by database.yml NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.4ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml  (0.2ms) select sqlite_version(*)  (25.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (9.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to BaseTechServices (20080805000010)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("users")  (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.0ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.2ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.3ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.2ms) CREATE TABLE "roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("sessions")  (0.2ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.1ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.2ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.3ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("audit_logs")  (0.2ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.1ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.2ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.3ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "secured_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "secured_record_id" integer, "secured_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("secured_models")  (0.2ms) CREATE INDEX "secured_record_idx" ON "secured_models" ("secured_record_id", "secured_record_type")  (0.2ms) CREATE TABLE "roles_secured_models" ("secured_model_id" integer, "role_id" integer)  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.2ms) CREATE INDEX "index_roles_secured_models_on_secured_model_id" ON "roles_secured_models" ("secured_model_id")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.3ms) CREATE INDEX "index_roles_secured_models_on_role_id" ON "roles_secured_models" ("role_id")  (0.3ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "width" varchar(255), "height" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("file_assets")  (0.2ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.3ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.1ms) PRAGMA index_list("file_assets")  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.2ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("delayed_jobs")  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.3ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("capable_models")  (0.2ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource" varchar(255), "capability_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (4.5ms) PRAGMA index_list("capabilities")  (0.4ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.2ms) CREATE TABLE "capabilities_capable_models" ("capable_model_id" integer, "capability_id" integer)   (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capable_model_id" ON "capabilities_capable_models" ("capable_model_id")  (0.1ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.2ms) CREATE INDEX "index_capabilities_capable_models_on_capability_id" ON "capabilities_capable_models" ("capability_id")  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000010')  (3.0ms) commit transaction Migrating to BaseErpServices (20080805000020)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (6.7ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("parties")  (0.3ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.6ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("party_roles")  (0.3ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.1ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.2ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.3ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("relationship_types")  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.0ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.2ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.3ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("party_relationships")  (0.2ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.1ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.1ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.2ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.3ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.5ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("individuals")  (0.2ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.2ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contacts")  (0.2ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.1ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.2ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.3ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("contact_types")  (0.2ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.3ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("contact_purposes")  (0.2ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.2ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)   (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.2ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.3ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("postal_addresses")  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.1ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.2ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.3ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.4ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.4ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" decimal(8,2), "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("money")  (0.2ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.4ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("currencies")  (0.3ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.4ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("categories")  (0.2ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.2ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("category_classifications")  (0.2ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.3ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("descriptive_assets")  (0.2ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.1ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.2ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.3ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_countries")  (0.2ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.1ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.2ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.3ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)  (0.0ms) PRAGMA index_list("geo_zones")  (0.2ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.2ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.3ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("notes")  (0.2ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.1ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.1ms) PRAGMA index_list("notes")  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.2ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.3ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("note_types")  (0.2ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.3ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("valid_note_types")  (0.2ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.1ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.2ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000020')  (4.8ms) commit transaction Migrating to BaseAppFramework (20080805000096)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("preferences")  (0.3ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.3ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("preference_types")  (0.3ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.3ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.0ms) PRAGMA index_list("preference_options_preference_types")  (0.3ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.1ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.3ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.3ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))  (0.3ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("user_preferences")  (0.2ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.1ms) PRAGMA index_list("user_preferences")  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.2ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.3ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("app_containers")  (0.4ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.1ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.2ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.4ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.0ms) PRAGMA index_list("app_containers_applications")  (1.2ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.1ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.2ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.3ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)  (0.1ms) PRAGMA index_list("applications_widgets")  (0.3ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.1ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.2ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.4ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("tree_menu_node_defs")  (0.2ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.3ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) PRAGMA index_list("valid_configurations")  (0.3ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.2ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.3ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("configuration_items")  (0.2ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.0ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.3ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.1ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.3ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.4ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)   (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.3ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.2ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.1ms) PRAGMA index_list("configuration_item_types_configurations")  (0.1ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.8ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.3ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) PRAGMA index_list("configuration_options")  (0.2ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.1ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.2ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.1ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.3ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.3ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.3ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.1ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.3ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.2ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20080805000096')  (3.5ms) commit transaction Migrating to CreateCompassAeInstance (20110913145329)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110913145329')  (1.5ms) commit transaction Migrating to CreateHasAttributeTables (20111117183144)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) PRAGMA index_list("attribute_types")  (0.3ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.3ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) PRAGMA index_list("attribute_values")  (0.3ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.1ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.3ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.1ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111117183144')  (9.0ms) commit transaction Migrating to AddIsTemplateToConfigurations (20120316152543)  (0.1ms) begin transaction  (0.9ms) ALTER TABLE "configurations" ADD "is_template" boolean DEFAULT 'f'  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120316152543')  (7.6ms) commit transaction Migrating to UpdateAppContainer (20120320182253)  (0.1ms) begin transaction  (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120320182253')  (1.4ms) commit transaction Migrating to RemoveFileSystemLoaderColumn (20120325123722)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120325123722')  (1.4ms) commit transaction Migrating to AddBaseUrlToApplication (20120411151848)  (0.1ms) begin transaction  (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120411151848')  (2.8ms) commit transaction Migrating to AddUserDefinedToConfigOption (20120427000446)  (0.1ms) begin transaction  (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120427000446')  (2.3ms) commit transaction Migrating to UpdateConfigurationJoinTables (20120429130430)  (0.1ms) begin transaction  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120429130430')  (3.5ms) commit transaction  (4.1ms) select sqlite_version(*)  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.1ms) PRAGMA index_list("app_containers")  (0.0ms) PRAGMA index_info('index_app_containers_on_type')  (0.0ms) PRAGMA index_info('index_app_containers_on_user_id')  (0.0ms) PRAGMA index_list("app_containers_applications")  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_app_container_id')  (0.0ms) PRAGMA index_info('index_app_containers_applications_on_application_id')  (0.1ms) PRAGMA index_list("applications")  (0.0ms) PRAGMA index_list("applications_widgets")  (0.0ms) PRAGMA index_info('index_applications_widgets_on_widget_id')  (0.0ms) PRAGMA index_info('index_applications_widgets_on_application_id')  (0.0ms) PRAGMA index_list("attribute_types")  (0.0ms) PRAGMA index_info(':attribute_types_iid_idx')  (0.1ms) PRAGMA index_list("attribute_values")  (0.0ms) PRAGMA index_info('attribute_values_value_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_type_idx')  (0.0ms) PRAGMA index_info('attribute_values_attributed_record_idx')  (0.0ms) PRAGMA index_list("audit_log_item_types")  (0.0ms) PRAGMA index_list("audit_log_items")  (0.0ms) PRAGMA index_list("audit_log_types")  (0.0ms) PRAGMA index_list("audit_logs")  (0.0ms) PRAGMA index_info('event_record_index')  (0.0ms) PRAGMA index_info('index_audit_logs_on_party_id')  (0.0ms) PRAGMA index_list("capabilities")  (0.0ms) PRAGMA index_info('index_capabilities_on_capability_type_id')  (0.0ms) PRAGMA index_list("capabilities_capable_models")  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capability_id')  (0.0ms) PRAGMA index_info('index_capabilities_capable_models_on_capable_model_id')  (0.0ms) PRAGMA index_list("capability_types")  (0.0ms) PRAGMA index_list("capable_models")  (0.0ms) PRAGMA index_info('capable_model_record_idx')  (0.0ms) PRAGMA index_list("categories")  (0.0ms) PRAGMA index_info('category_polymorphic')  (0.0ms) PRAGMA index_list("category_classifications")  (0.0ms) PRAGMA index_info('classification_polymorphic')  (0.0ms) PRAGMA index_list("compass_ae_instances")  (0.0ms) PRAGMA index_list("configuration_item_types")  (0.0ms) PRAGMA index_list("configuration_item_types_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_opt_idx')  (0.0ms) PRAGMA index_info('conf_item_type_conf_opt_id_item_idx')  (0.0ms) PRAGMA index_list("configuration_item_types_configurations")  (0.0ms) PRAGMA index_info('conf_config_type_uniq_idx')  (0.0ms) PRAGMA index_info('conf_id_idx')  (0.0ms) PRAGMA index_info('conf_conf_type_id_item_idx')  (0.1ms) PRAGMA index_list("configuration_items")  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_option_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_item_type_id')  (0.0ms) PRAGMA index_info('index_configuration_items_on_configuration_id')  (0.0ms) PRAGMA index_list("configuration_items_configuration_options")  (0.0ms) PRAGMA index_info('conf_item_conf_opt_id_opt_idx')  (0.1ms) PRAGMA index_info('conf_item_conf_opt_id_item_idx')  (0.1ms) PRAGMA index_list("configuration_options")  (0.0ms) PRAGMA index_info('index_configuration_options_on_user_defined')  (0.0ms) PRAGMA index_info('index_configuration_options_on_internal_identifier')  (0.0ms) PRAGMA index_info('index_configuration_options_on_value')  (0.0ms) PRAGMA index_list("configurations")  (0.0ms) PRAGMA index_list("contact_purposes")  (0.0ms) PRAGMA index_info('index_contact_purposes_on_parent_id')  (0.0ms) PRAGMA index_list("contact_purposes_contacts")  (0.0ms) PRAGMA index_info('contact_purposes_contacts_index')  (0.1ms) PRAGMA index_list("contact_types")  (0.0ms) PRAGMA index_info('index_contact_types_on_parent_id')  (0.0ms) PRAGMA index_list("contacts")  (0.0ms) PRAGMA index_info('besi_2')  (0.0ms) PRAGMA index_info('index_contacts_on_party_id')  (0.1ms) PRAGMA index_list("currencies")  (0.0ms) PRAGMA index_info('index_currencies_on_internal_identifier')  (0.1ms) PRAGMA index_list("delayed_jobs")  (0.0ms) PRAGMA index_info('delayed_jobs_priority')  (0.1ms) PRAGMA index_list("descriptive_assets")  (0.0ms) PRAGMA index_info('described_record_idx')  (0.0ms) PRAGMA index_info('index_descriptive_assets_on_view_type_id')  (0.0ms) PRAGMA index_list("email_addresses")  (0.1ms) PRAGMA index_list("file_assets")  (0.1ms) PRAGMA index_info('index_file_assets_on_directory')  (0.0ms) PRAGMA index_info('index_file_assets_on_name')  (0.0ms) PRAGMA index_info('file_asset_holder_idx')  (0.0ms) PRAGMA index_info('index_file_assets_on_type')  (0.1ms) PRAGMA index_list("geo_countries")  (0.0ms) PRAGMA index_info('index_geo_countries_on_iso_code_2')  (0.0ms) PRAGMA index_info('index_geo_countries_on_name')  (0.0ms) PRAGMA index_list("geo_zones")  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_code')  (0.0ms) PRAGMA index_info('index_geo_zones_on_zone_name')  (0.0ms) PRAGMA index_info('index_geo_zones_on_geo_country_id')  (0.1ms) PRAGMA index_list("individuals")  (0.0ms) PRAGMA index_info('index_individuals_on_party_id')  (0.0ms) PRAGMA index_list("money")  (0.0ms) PRAGMA index_info('index_money_on_currency_id')  (0.0ms) PRAGMA index_list("note_types")  (0.0ms) PRAGMA index_info('note_type_record_idx')  (0.1ms) PRAGMA index_list("notes")  (0.1ms) PRAGMA index_info('index_notes_on_created_by_id')  (0.0ms) PRAGMA index_info('index_notes_on_note_type_id')  (0.0ms) PRAGMA index_info('index_notes_on_noted_record_id_and_noted_record_type')  (0.0ms) PRAGMA index_list("organizations")  (0.1ms) PRAGMA index_list("parties")  (0.0ms) PRAGMA index_info('besi_1')  (0.1ms) PRAGMA index_list("party_relationships")  (0.0ms) PRAGMA index_info('index_party_relationships_on_relationship_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_priority_type_id')  (0.0ms) PRAGMA index_info('index_party_relationships_on_status_type_id')  (0.1ms) PRAGMA index_list("party_roles")  (0.0ms) PRAGMA index_info('index_party_roles_on_role_type_id')  (0.0ms) PRAGMA index_info('index_party_roles_on_party_id')  (0.0ms) PRAGMA index_list("party_search_facts")  (0.0ms) PRAGMA index_list("phone_numbers")  (0.0ms) PRAGMA index_list("postal_addresses")  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_zone_id')  (0.0ms) PRAGMA index_info('index_postal_addresses_on_geo_country_id')  (0.0ms) PRAGMA index_list("preference_options")  (0.1ms) PRAGMA index_list("preference_options_preference_types")  (0.0ms) PRAGMA index_info('pref_opt_pref_type_pref_opt_id_idx')  (0.1ms) PRAGMA index_info('pref_opt_pref_type_pref_type_id_idx')  (0.0ms) PRAGMA index_list("preference_types")  (0.0ms) PRAGMA index_info('index_preference_types_on_default_pref_option_id')  (0.0ms) PRAGMA index_list("preferences")  (0.0ms) PRAGMA index_info('index_preferences_on_preference_type_id')  (0.0ms) PRAGMA index_info('index_preferences_on_preference_option_id')  (0.1ms) PRAGMA index_list("relationship_types")  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_to_role_type_id')  (0.0ms) PRAGMA index_info('index_relationship_types_on_valid_from_role_type_id')  (0.0ms) PRAGMA index_list("role_types")  (0.1ms) PRAGMA index_list("roles")  (0.0ms) PRAGMA index_list("roles_secured_models")  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_role_id')  (0.0ms) PRAGMA index_info('index_roles_secured_models_on_secured_model_id')  (0.1ms) PRAGMA index_list("secured_models")  (0.1ms) PRAGMA index_info('secured_record_idx')  (0.0ms) PRAGMA index_list("sessions")  (0.0ms) PRAGMA index_info('index_sessions_on_updated_at')  (0.0ms) PRAGMA index_info('index_sessions_on_session_id')  (0.1ms) PRAGMA index_list("tree_menu_node_defs")  (0.1ms) PRAGMA index_info('index_tree_menu_node_defs_on_parent_id')  (0.1ms) PRAGMA index_list("user_preferences")  (0.1ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_type')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preferenced_record_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_preference_id')  (0.0ms) PRAGMA index_info('index_user_preferences_on_user_id')  (0.1ms) PRAGMA index_list("users")  (0.0ms) PRAGMA index_info('index_users_on_activation_token')  (0.0ms) PRAGMA index_info('index_users_on_reset_password_token')  (0.0ms) PRAGMA index_info('index_users_on_remember_me_token')  (0.0ms) PRAGMA index_info('activity_idx')  (0.0ms) PRAGMA index_info('index_users_on_username')  (0.0ms) PRAGMA index_info('index_users_on_email')  (0.0ms) PRAGMA index_list("valid_configurations")  (0.0ms) PRAGMA index_info('index_valid_configurations_on_configuration_id')  (0.0ms) PRAGMA index_info('configured_item_poly_idx')  (0.1ms) PRAGMA index_list("valid_note_types")  (0.0ms) PRAGMA index_info('index_valid_note_types_on_note_type_id')  (0.0ms) PRAGMA index_info('valid_note_type_record_idx')  (0.0ms) PRAGMA index_list("valid_preference_types")  (0.0ms) PRAGMA index_list("view_types")  (0.0ms) PRAGMA index_list("widgets") Connecting to database specified by database.yml NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types"  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.1ms) select sqlite_version(*)  (2.7ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (4.9ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.2ms) select max(version) as current_version from data_migrations  (4.9ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (32.0ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:36 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Wed, 22 Aug 2012 19:29:36 UTC +00:00]]  (2.5ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20110525001935')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.2ms) SELECT "geo_countries".* FROM "geo_countries"  WARNING: Can't mass-assign protected attributes: id SQL (1.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (2.0ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] WARNING: Can't mass-assign protected attributes: id SQL (2.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] WARNING: Can't mass-assign protected attributes: id SQL (1.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (1.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] WARNING: Can't mass-assign protected attributes: id SQL (1.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] WARNING: Can't mass-assign protected attributes: id SQL (1.8ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] WARNING: Can't mass-assign protected attributes: id SQL (3.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] WARNING: Can't mass-assign protected attributes: id SQL (1.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.2ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (5.0ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.7ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (5.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.6ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (3.5ms) commit transaction  (7.1ms) insert into data_migrations (version) values ('20110609150135')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.9ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00]] ContactPurpose Load (6.3ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Wed, 22 Aug 2012 19:29:37 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.4ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] Role Load (0.1ms) SELECT "roles".* FROM "roles"  Role Exists (0.2ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] Role Exists (0.1ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] SQL (0.8ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["value", "yes"]] SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["value", "no"]] SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["value", "blue.gif"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["value", "gradient.png"]] SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["value", "purple.jpg"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Planet"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["value", "planet.jpg"]] SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["value", "portablemind.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.5ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-08-22 19:29:38.494388' WHERE "preference_types"."id" = 3  (0.2ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.2ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2012-08-22 19:29:38.505000' WHERE "preference_types"."id" = 4  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.2ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2012-08-22 19:29:38.511319' WHERE "preference_types"."id" = 1  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.2ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2012-08-22 19:29:38.514264' WHERE "preference_types"."id" = 2 NoteType Load (0.2ms) SELECT "note_types".* FROM "note_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'shared_notesgrid' LIMIT 1 Widget Exists (0.6ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 SQL (0.5ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["xtype", "shared_notesgrid"]] SQL (0.6ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 1) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (1)  (0.3ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (1, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 1]] Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'shared_notesgrid' AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'shared_notes_grid' AND "widgets"."id" != 1) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (1) CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' LIMIT 1 Widget Exists (0.4ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:38 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 2  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (2, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 2]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'controlpanel_userapplicationmgtpanel' AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_management' AND "widgets"."id" != 2) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (2) CapableModel Load (0.7ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 2 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.4ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_rolemanagementpanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'role_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] Role Load (0.4ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 3  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (3, 1) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 3]] Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_rolemanagementpanel' AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'role_management' AND "widgets"."id" != 3) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (3) CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 3 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'usermanagement_personalinfopanel' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'user_personal_info' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 4  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (4)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (4, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 4]] Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'usermanagement_personalinfopanel' AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'user_personal_info' AND "widgets"."id" != 4) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (4) CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 4 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 1], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.2ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'application_role_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", "Application Role Management"], ["icon", "icon-document"], ["internal_identifier", "application_role_management"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["xtype", "systemmanagement_applicationrolemanagment"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 5  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (5, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 5]] Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'systemmanagement_applicationrolemanagment' AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'application_role_management' AND "widgets"."id" != 5) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 5 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (5) CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 5 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (1.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", "System Management"], ["icon", "icon-monitor"], ["internal_identifier", "system_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.SystemManagement"], ["shortcut_id", "system_management-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 2], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 5) Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SystemManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'system_management' AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 3], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'scaffold' AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'contactmechanismgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 SQL (0.7ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["xtype", "contactmechanismgrid"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 6  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (6, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 6]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'contactmechanismgrid' AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_contact_management' AND "widgets"."id" != 6) LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.4ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6) CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 6 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'partygrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_management_widget' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["xtype", "partygrid"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["secured_record_id", 7], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] Role Load (0.4ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 7  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (7)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (7, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 7]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'partygrid' AND "widgets"."id" != 7) LIMIT 1 Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'party_management_widget' AND "widgets"."id" != 7) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 7 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (7) CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_id" = 7 AND "capable_models"."capable_model_record_type" = 'Widget' LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 4], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.3ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["weight", nil]] SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2012-08-22 19:29:39.509717', "updated_at" = '2012-08-22 19:29:39.509717' WHERE "individuals"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.9ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]]  (0.2ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2012-08-22 19:29:39.571553', "updated_at" = '2012-08-22 19:29:39.571553' WHERE "organizations"."id" = 1 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.2ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@portablemind.com' LIMIT 1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["username", "admin"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:39.853894' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:39.864402' WHERE "user_preferences"."id" = 2  (0.2ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-22 19:29:39.866346' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["user_id", 1]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:39.903250' WHERE "user_preferences"."id" = 3  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-22 19:29:39.905156' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 19:29:39 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2012-08-22 19:29:39.956234' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.3ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'ZA3KPEBHKDrgqpbF8Kp7', "crypted_password" = '$2a$10$s3NIQBlg/BeB/3K37z5BNusbCbpdyrVqs2R2VUwWatcvtTFs9McUG', "updated_at" = '2012-08-22 19:29:40.173854' WHERE "users"."id" = 1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 8  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (8, 1) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (8) Organization Load (0.2ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'truenorth@gmail.com' LIMIT 1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["username", "truenorth"]] SQL (0.8ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:40.221463' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.3ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:40.230830' WHERE "user_preferences"."id" = 5  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-22 19:29:40.232393' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["user_id", 2]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:40.243500' WHERE "user_preferences"."id" = 6  (0.2ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-22 19:29:40.245007' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (1.0ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2012-08-22 19:29:40.249783' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 2, "salt" = 'DUUsWQuqH5yxFdYkHy5C', "crypted_password" = '$2a$10$xhkZiymTSrJiCI4r8HLn7ekf5QXoIZWfm80KyxEJHhv4RgNc0EcWe', "updated_at" = '2012-08-22 19:29:40.439019' WHERE "users"."id" = 2  (0.2ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2012-08-22 19:29:40.441992' WHERE "users"."id" = 2 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 9  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (9, 1) User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 2]] User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.4ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (9) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (1.8ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.4ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.9ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.3ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (5.8ms) commit transaction  (2.6ms) insert into data_migrations (version) values ('20110728201729')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.1ms) begin transaction SQL (1.1ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Thu, 23 Aug 2012 07:00:01 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00]]  (2.7ms) commit transaction  (2.3ms) insert into data_migrations (version) values ('20110802200222')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110816161238'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'audit_log_viewer' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["description", "Audit Log Viewer"], ["icon", "icon-history"], ["internal_identifier", "audit_log_viewer"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.AuditLogViewer"], ["shortcut_id", "audit_log_viewer-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 5], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'audit_log_viewer' AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1  (4.3ms) commit transaction  (2.1ms) insert into data_migrations (version) values ('20110816161238')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.1ms) begin transaction DesktopApplication Load (1.4ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.7ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00]] SQL (0.4ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 6], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'file_manager' AND "applications"."id" != 6 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.3ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.2ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 6) User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'admin@portablemind.com' AND "users"."id" != 1) LIMIT 1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'admin' AND "users"."id" != 1) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 1 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (8) User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 6) User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE ("users"."email" = 'truenorth@gmail.com' AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE ("users"."username" = 'truenorth' AND "users"."id" != 2) LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 2 AND "secured_models"."secured_record_type" = 'User' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (9)  (3.7ms) commit transaction  (3.4ms) insert into data_migrations (version) values ('20110817160743')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["version", #]]  (41.4ms) commit transaction  (1.9ms) insert into data_migrations (version) values ('20110913145838')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.1ms) begin transaction SQL (1.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["description", "Edit"], ["internal_identifier", "edit"], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00]] SQL (0.3ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00]] SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Wed, 22 Aug 2012 19:29:40 UTC +00:00]] DesktopApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 CapableModel Load (0.3ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5) CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.3ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' AND (capability_type_id = 3 and resource = 'User') LIMIT 1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["resource", "User"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["secured_record_id", 1], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 10  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (10, 1) Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 1) CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.3ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Application' AND (capability_type_id = 2 and resource = 'User') LIMIT 1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["resource", "User"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["secured_record_id", 2], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 11  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (11, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (5, 2) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'shared_notes_grid' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (1) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (1) CapabilityType Load (0.3ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 Capability Load (0.3ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 3 and resource = 'Note') LIMIT 1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 3], ["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 12  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.5ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 3 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (12)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (12, 2) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 3) CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 Capability Load (0.7ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 4 and resource = 'Note') LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 4], ["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] Role Load (0.5ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 13  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 4 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (13)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (13, 2) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 4]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 4) CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 Capability Load (0.4ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 1 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 2 and resource = 'Note') LIMIT 1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 2], ["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["secured_record_id", 5], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 14  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (14, 1) Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (1, 5)  (3.1ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20111108183739')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.1ms) begin transaction OrganizerApplication Load (0.3ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.3ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.3ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11) Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (6) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (9) Application Load (0.3ms) SELECT "applications".* FROM "applications" INNER JOIN "applications_widgets" ON "applications"."id" = "applications_widgets"."application_id" WHERE "applications_widgets"."widget_id" = 6 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11)  (0.4ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 6 AND "applications_widgets"."application_id" IN (4) SQL (0.2ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 6]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (6)  (0.3ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 6 AND "roles_secured_models"."role_id" IN (1, 2) SQL (0.2ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 6]] SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 9]] Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'phonenumbergrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'phone_number_management' LIMIT 1 SQL (2.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["xtype", "phonenumbergrid"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["secured_record_id", 8], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] SQL (0.2ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 15  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 8 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (15)  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (15, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 8]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'emailaddressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'email_address_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["xtype", "emailaddressgrid"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["secured_record_id", 9], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 9], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.4ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 16  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 9 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (16)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (16, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 9]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'postaladdressgrid' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'postal_address_management' LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["xtype", "postaladdressgrid"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["secured_record_id", 10], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 10], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 17  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 1) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]] Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'employee' LIMIT 1 SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 10 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (17)  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (17, 2) Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."id" = ? LIMIT 1 [["id", 10]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.4ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (10.9ms) commit transaction  (2.7ms) insert into data_migrations (version) values ('20111108183740')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.1ms) begin transaction AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" AuditLogType Load (0.3ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.8ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] AuditLogType Load (0.7ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.6ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 2 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.7ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (3.7ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 3 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.3ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 4 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.3ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.8ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] AuditLogType Load (0.2ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.3ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 5 ORDER BY lft AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.3ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.4ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "lft") AuditLogType Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE "audit_log_types"."parent_id" = 6 ORDER BY lft AuditLogType Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (11.2ms) commit transaction  (109.6ms) insert into data_migrations (version) values ('20111111144706')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120109173616'  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]] Role Exists (0.1ms) SELECT 1 AS one FROM "roles" WHERE LOWER("roles"."internal_identifier") = LOWER('file_downloader') LIMIT 1 SQL (0.2ms) INSERT INTO "roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00], ["description", "File Downloader"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "file_downloader"], ["updated_at", Wed, 22 Aug 2012 19:29:41 UTC +00:00]]  (440.0ms) commit transaction  (373.0ms) insert into data_migrations (version) values ('20120109173616')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.1ms) begin transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (4) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (11) Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" = 'userinfo' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 SQL (38.9ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:42 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Wed, 22 Aug 2012 19:29:42 UTC +00:00], ["xtype", "userinfo"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:42 UTC +00:00], ["secured_record_id", 11], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 19:29:42 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 11], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 19:29:42 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:42 UTC +00:00]]  (0.3ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 11) Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 4) LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'crm' AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 Role Load (0.4ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1  (0.6ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (18, 1) Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."xtype" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE ("widgets"."internal_identifier" = 'userinfo' AND "widgets"."id" != 11) LIMIT 1  (607.2ms) commit transaction  (96.3ms) insert into data_migrations (version) values ('20120229160222')  (0.3ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.1ms) begin transaction  (0.0ms) commit transaction  (1.6ms) insert into data_migrations (version) values ('20120405193721')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'user_management' AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.1ms) commit transaction  (2.2ms) insert into data_migrations (version) values ('20120411180756')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120413000515'  (0.1ms) begin transaction User Load (0.3ms) SELECT "users".* FROM "users" SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 19:29:43 UTC +00:00], ["user_id", 1]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:43 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 19:29:43 UTC +00:00], ["user_id", 2]]  (2.6ms) commit transaction  (5.2ms) insert into data_migrations (version) values ('20120413000515')  (0.2ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.1ms) begin transaction Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'configuration_management' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 19:29:43 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 22 Aug 2012 19:29:43 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 7], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 19:29:43 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:43 UTC +00:00]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.3ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.3ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.4ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.4ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1, 2, 3, 5, 6) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5, 7, 8, 12, 13) ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 7 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 7], ["preferenced_record_type", "Application"]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Application' AND "capable_models"."capable_model_record_id" IN (1, 2, 3, 5, 6) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (5, 7, 8, 12, 13) ValidPreferenceType Load (0.3ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.3ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 3 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.2ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 7 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 7], ["preferenced_record_type", "Application"]]  (9.2ms) commit transaction  (12.8ms) insert into data_migrations (version) values ('20120418164215')  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (11.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00], ["weight", 180]] SQL (0.8ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00]]  (0.7ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 19:29:45.442015', "updated_at" = '2012-08-22 19:29:45.442015' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user1@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin1' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.8ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00], ["crypted_password", "$2a$10$qHdGkWoarW0RCKNmam3EEudQYfZDmgtNNtPvzFbywX4boxrr8Dna2"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00], ["username", "admin1"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 19:29:45 UTC +00:00]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (33.4ms) Sent mail to user1@portablemind.com (172ms) Date: Wed, 22 Aug 2012 15:29:46 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <5035332add53d_c1ee3ff3e1c34cd0848c2@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:46 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 19:29:46 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.3ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (12.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:47.137065' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:47.146813' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:47.148595' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:47.182924' WHERE "user_preferences"."id" = 9  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:47.185454' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", nil]]  (0.5ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:47.210092' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.2ms) UPDATE "users" SET "last_login_at" = '2012-08-22 19:29:47.216042' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.3ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) Rendered inline template (0.4ms) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-08-22 19:29:47.305201' WHERE "users"."id" = 3 Completed 200 OK in 30ms (Views: 2.0ms | ActiveRecord: 1.5ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (36.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["weight", 180]] SQL (17.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 19:29:47.318278', "updated_at" = '2012-08-22 19:29:47.318278' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (1.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["value", "ext-all.css"]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user2@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin2' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["crypted_password", "$2a$10$RP6YSbeOFCcc1ONhL0mWkeDfcZgg3BC4tmCIYBetshg356/BL9kUK"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["username", "admin2"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]] Sent mail to user2@portablemind.com (13ms) Date: Wed, 22 Aug 2012 15:29:47 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <5035332b97af1_c1ee3ff3e1c34cd0849c4@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:47.643971' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:47.651922' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:47.653434' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", 3]]  (8.6ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:47.667378' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:47.677340' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:47.680927' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-08-22 19:29:47.683762' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 500 Internal Server Error in 0ms  (14.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["weight", 180]] SQL (0.8ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 19:29:47.733686', "updated_at" = '2012-08-22 19:29:47.733686' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (6.0ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user3@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin3' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.6ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["crypted_password", "$2a$10$2dsoszIYV4mJ3FMkw89t5ey1eZbr8hiZjElFvBDkOSQXmfcdJ9Pkq"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["username", "admin3"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]] Sent mail to user3@portablemind.com (14ms) Date: Wed, 22 Aug 2012 15:29:47 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <5035332bd6cc7_c1ee3ff3e1c34cd0850ba@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:47.913760' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:47.923224' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:47.924444' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:47.935051' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:47.937048' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 19:29:47 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:47.941081' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-08-22 19:29:47.943985' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.3ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-08-22 19:29:47.950916' WHERE "users"."id" = 3 Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.5ms)  (17.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 19:29:48.002597', "updated_at" = '2012-08-22 19:29:48.002597' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'user4@portablemind.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin4' LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (1.0ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["crypted_password", "$2a$10$3.yAm1nA5FyARyg4q8SnCeMQl5jkgXiL9pG81KWLS3Mvn1rjB/4ta"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["username", "admin4"]] SQL (11.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]] Sent mail to user4@portablemind.com (19ms) Date: Wed, 22 Aug 2012 15:29:48 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <5035332c2a6e0_c1ee3ff3e1c34cd0851b8@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.6ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.4ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:48.205530' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:48.225066' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:48.231764' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:48.246444' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:48.247726' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:48.251446' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2012-08-22 19:29:48.254365' WHERE "users"."id" = 3 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (2.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.build is deprecated; use FactoryGirl.build instead. (called from block (3 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/controllers/organizer/crm/relationship_controller_spec.rb:30)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2012-08-22 19:29:48.493654' WHERE "users"."id" = 3 Completed 200 OK in 6ms (Views: 1.1ms | ActiveRecord: 0.2ms)  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (53.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" IS NULL) LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]] SQL (0.5ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.8ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (4.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (4.0ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.6ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.8ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.5ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 19:29:48.790584', "updated_at" = '2012-08-22 19:29:48.790584' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (1.8ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (1.1ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.7ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 19:29:48.839517', "updated_at" = '2012-08-22 19:29:48.839517' WHERE "individuals"."id" = 2 Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:15)  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["weight", 180]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 19:29:48.879603', "updated_at" = '2012-08-22 19:29:48.879603' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.8ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.4ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 19:29:48.897788', "updated_at" = '2012-08-22 19:29:48.897788' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (12.1ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:21)  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.4ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.3ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:24)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 22 Aug 2012 19:29:48 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (6.4ms) rollback transaction  (0.1ms) begin transaction DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:5)  (0.1ms) SAVEPOINT active_record_1 SQL (0.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["weight", 180]] SQL (1.0ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (1.6ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2012-08-22 19:29:49.006258', "updated_at" = '2012-08-22 19:29:49.006258' WHERE "individuals"."id" = 2 Party Load (0.6ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 DEPRECATION WARNING: Factory.create is deprecated; use FactoryGirl.create instead. (called from block (2 levels) in at /Library/WebServer/Documents/compass_agile_enterprise/erp_app/spec/models/extensions/party_spec.rb:6)  (0.1ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.2ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (17.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.2ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."internal_identifier" = 'test' AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 8], ["capable_model_record_type", "Application"], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.7ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (7.6ms) rollback transaction  (0.4ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["value", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (2.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (9.9ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (1.5ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (11.9ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (38.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.8ms) rollback transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", "Test Type"], ["internal_identifier", "test_type"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (2.6ms) commit transaction  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.0ms) begin transaction Widget Exists (0.2ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."xtype" IS NULL LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 SQL (0.9ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test_widget"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["xtype", nil]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["secured_record_id", 12], ["secured_record_type", "Widget"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.7ms) INSERT INTO "capable_models" ("capable_model_record_id", "capable_model_record_type", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["capable_model_record_id", 12], ["capable_model_record_type", "Widget"], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (5.0ms) commit transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.7ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["username", "admin_test"]] SQL (0.8ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", 3]]  (0.5ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:49.465910' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.4ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.4ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:49.479794' WHERE "user_preferences"."id" = 8  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:49.482761' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:49.502084' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:49.503424' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:49.507095' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.2ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.2ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (4.9ms) rollback transaction  (0.1ms) begin transaction Widget Load (1.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.3ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'employee@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'employee_test' LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["crypted_password", nil], ["email", "employee@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["username", "employee_test"]] SQL (0.4ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.3ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.6ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", 3]]  (0.6ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:49.692605' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.3ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:49.705770' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:49.707204' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:49.718418' WHERE "user_preferences"."id" = 9  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:49.720325' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:49.724887' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["username", "admin_test"]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["secured_record_id", 4], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_id", 10], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:49.743802' WHERE "user_preferences"."id" = 10 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 12], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_id", 11], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 12, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:49.751455' WHERE "user_preferences"."id" = 11  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-22 19:29:49.752739' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 12 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 13], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_id", 12], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", 4]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 13, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:49.766839' WHERE "user_preferences"."id" = 12  (0.2ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-22 19:29:49.768200' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 13 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 4, "updated_at" = '2012-08-22 19:29:49.771674' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 14  (0.0ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 4]] CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.2ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 22  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (22, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (1.0ms) rollback transaction  (0.1ms) begin transaction Widget Load (0.2ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'test_widget' LIMIT 1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.2ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'admin@gmail.com' LIMIT 1 User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."username" = 'admin_test' LIMIT 1 SQL (0.9ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["crypted_password", nil], ["email", "admin@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["username", "admin_test"]] SQL (0.6ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["secured_record_id", 3], ["secured_record_type", "User"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (2.8ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (8.8ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", 3]]  (0.9ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:49.831774' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 9], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.5ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.5ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", 3]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 9, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:49.845847' WHERE "user_preferences"."id" = 8  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:49.847807' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 9 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 10], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.2ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 10, "preferenced_record_type" = 'AppContainer', "updated_at" = '2012-08-22 19:29:49.860628' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:49.862138' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 10 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["user_id", nil]]  (0.3ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2012-08-22 19:29:49.866247' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 11  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 20  (0.0ms) SAVEPOINT active_record_1  (0.2ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (20, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 3]] CapabilityType Load (0.2ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_type_id", "created_at", "resource", "updated_at") VALUES (?, ?, ?, ?) [["capability_type_id", 6], ["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["resource", "Note"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "secured_models" ("created_at", "secured_record_id", "secured_record_type", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00], ["secured_record_id", 6], ["secured_record_type", "Capability"], ["updated_at", Wed, 22 Aug 2012 19:29:49 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Role Load (0.1ms) SELECT "roles".* FROM "roles" WHERE "roles"."internal_identifier" = 'admin' LIMIT 1 Role Load (0.1ms) SELECT "roles".* FROM "roles" INNER JOIN "roles_secured_models" ON "roles"."id" = "roles_secured_models"."role_id" WHERE "roles_secured_models"."secured_model_id" = 21  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "roles_secured_models" ("secured_model_id", "role_id") VALUES (21, 1)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."id" = ? LIMIT 1 [["id", 6]]  (0.0ms) SAVEPOINT active_record_1  (0.1ms) INSERT INTO "capabilities_capable_models" ("capable_model_id", "capability_id") VALUES (19, 6)  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'test_type' LIMIT 1 Capability Load (0.2ms) SELECT "capabilities".* FROM "capabilities" INNER JOIN "capabilities_capable_models" ON "capabilities"."id" = "capabilities_capable_models"."capability_id" INNER JOIN "capable_models" ON "capabilities_capable_models"."capable_model_id" = "capable_models"."id" WHERE "capable_models"."capable_model_record_id" = 12 AND "capable_models"."capable_model_record_type" = 'Widget' AND (capability_type_id = 6 and resource = 'Note') LIMIT 1  (0.0ms) SAVEPOINT active_record_1 CapableModel Load (0.2ms) SELECT "capable_models".* FROM "capable_models" INNER JOIN "capabilities_capable_models" ON "capable_models"."id" = "capabilities_capable_models"."capable_model_id" WHERE "capabilities_capable_models"."capability_id" = 6  (0.1ms) DELETE FROM "capabilities_capable_models" WHERE "capabilities_capable_models"."capability_id" = 6 AND "capabilities_capable_models"."capable_model_id" IN (19) SQL (0.1ms) DELETE FROM "capabilities" WHERE "capabilities"."id" = ? [["id", 6]] SecuredModel Load (0.2ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 6 AND "secured_models"."secured_record_type" = 'Capability' LIMIT 1 SQL (0.3ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (21)  (0.4ms) DELETE FROM "roles_secured_models" WHERE "roles_secured_models"."secured_model_id" = 21 AND "roles_secured_models"."role_id" IN (1) SQL (0.3ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 21]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (6.6ms) rollback transaction Widget Load (0.3ms) SELECT "widgets".* FROM "widgets" WHERE (internal_identifier = 'test_widget') CapableModel Load (0.3ms) SELECT "capable_models".* FROM "capable_models" WHERE "capable_models"."capable_model_record_type" = 'Widget' AND "capable_models"."capable_model_record_id" IN (12) SQL (0.3ms) SELECT "capabilities".*, "t0"."capable_model_id" AS ar_association_key_name FROM "capabilities" INNER JOIN "capabilities_capable_models" "t0" ON "capabilities"."id" = "t0"."capability_id" WHERE "t0"."capable_model_id" IN (19)  (0.1ms) begin transaction Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "applications_widgets" ON "applications"."id" = "applications_widgets"."application_id" WHERE "applications_widgets"."widget_id" = 12 SQL (0.3ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 12]] SecuredModel Load (0.1ms) SELECT "secured_models".* FROM "secured_models" WHERE "secured_models"."secured_record_id" = 12 AND "secured_models"."secured_record_type" = 'Widget' LIMIT 1 SQL (0.2ms) SELECT "roles".*, "t0"."secured_model_id" AS ar_association_key_name FROM "roles" INNER JOIN "roles_secured_models" "t0" ON "roles"."id" = "t0"."role_id" WHERE "t0"."secured_model_id" IN (19) SQL (0.1ms) DELETE FROM "secured_models" WHERE "secured_models"."id" = ? [["id", 19]] SQL (0.2ms) DELETE FROM "capable_models" WHERE "capable_models"."id" = ? [["id", 19]]  (12.5ms) commit transaction User Load (0.6ms) SELECT "users".* FROM "users" WHERE (username = 'admin_test') User Load (0.4ms) SELECT "users".* FROM "users" WHERE (username = 'employee_test') CapabilityType Load (0.3ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'test_type')  (0.3ms) begin transaction SQL (0.8ms) DELETE FROM "capability_types" WHERE "capability_types"."id" = ? [["id", 6]]  (1.6ms) commit transaction Connecting to database specified by database.yml NoteType Load (1.6ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.5ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.5ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to BaseErpServices (20130102183121)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal(3,8), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.1ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.1ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.1ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.1ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.1ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.1ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.1ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)  (0.1ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.1ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.1ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" decimal(8,2), "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.1ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.1ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.1ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.1ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.1ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.1ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.1ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.1ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.1ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)   (0.1ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.1ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.1ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.1ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.1ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.1ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.1ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183121')  (2.5ms) commit transaction Migrating to BaseTechServices (20130102183122)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.1ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "security_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.2ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.2ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "width" varchar(255), "height" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.1ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capability_type_id" integer, "capability_resource_type" varchar(255), "capability_resource_id" integer, "scope_type_id" integer, "scope_query" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE INDEX "index_capabilities_on_scope_type_id" ON "capabilities" ("scope_type_id")  (0.1ms) CREATE INDEX "capability_resource_index" ON "capabilities" ("capability_resource_id", "capability_resource_type")  (0.1ms) CREATE TABLE "capability_accessors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capability_accessor_record_type" varchar(255), "capability_accessor_record_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capability_accessors_on_capability_id" ON "capability_accessors" ("capability_id")  (0.1ms) CREATE INDEX "capability_accessor_record_index" ON "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type")  (0.1ms) CREATE TABLE "scope_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_scope_types_on_internal_identifier" ON "scope_types" ("internal_identifier")  (0.1ms) CREATE TABLE "parties_security_roles" ("party_id" integer, "security_role_id" integer)  (0.1ms) CREATE INDEX "index_parties_security_roles_on_party_id" ON "parties_security_roles" ("party_id")  (0.1ms) CREATE INDEX "index_parties_security_roles_on_security_role_id" ON "parties_security_roles" ("security_role_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183122')  (1.0ms) commit transaction Migrating to CreateHasAttributeTables (20130102183123)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.1ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.1ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.1ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183123')  (0.7ms) commit transaction Migrating to CreateGroups (20130102183124)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183124')  (0.7ms) commit transaction Migrating to UpgradeSecurity (20130102183125)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183125')  (0.5ms) commit transaction Migrating to UpgradeSecurity2 (20130102183126)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183126')  (0.4ms) commit transaction Migrating to BaseAppFramework (20130102183127)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.2ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.1ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.1ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))   (0.1ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.1ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.1ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.1ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.1ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.1ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.1ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)   (0.1ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.1ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.1ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "is_template" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configurations_on_is_template" ON "configurations" ("is_template")  (0.1ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.1ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.1ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)  (0.1ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.3ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.1ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.1ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.1ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.1ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.1ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.1ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.1ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183127')  (1.4ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml NoteType Load (2.3ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.5ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.1ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110109173616'  (0.0ms) begin transaction CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'download') LIMIT 1 SQL (6.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'instance') LIMIT 1 SQL (0.3ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Instance"], ["internal_identifier", "instance"], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'class') LIMIT 1 SQL (0.1ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Class"], ["internal_identifier", "class"], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'query') LIMIT 1 SQL (0.1ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Query"], ["internal_identifier", "query"], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]]  (0.6ms) commit transaction  (0.6ms) insert into data_migrations (version) values ('20110109173616')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]]  (0.7ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110525001935')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.1ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" WARNING: Can't mass-assign protected attributes: id SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] WARNING: Can't mass-assign protected attributes: id SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.2ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110609150135')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.0ms) begin transaction ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Wed, 02 Jan 2013 18:31:36 UTC +00:00]] SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles"  SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["value", "no"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Planet"], ["internal_identifier", "planet_desktop_background"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.3ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-01-02 18:31:37.187953' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-01-02 18:31:37.190874' WHERE "preference_types"."id" = 4  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2013-01-02 18:31:37.193441' WHERE "preference_types"."id" = 1  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2013-01-02 18:31:37.195250' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "note_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('shared_notesgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["xtype", "shared_notesgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('shared_notesgrid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('application_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('application_management') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('role_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('role_management') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') AND "widgets"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["xtype", "contactmechanismgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('partygrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["xtype", "partygrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('partygrid') AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') AND "widgets"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 5)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 6)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 3 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["weight", nil]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2013-01-02 18:31:37.487485', "updated_at" = '2013-01-02 18:31:37.487485' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.3ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2013-01-02 18:31:37.530575', "updated_at" = '2013-01-02 18:31:37.530575' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.1ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('admin@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["username", "admin"]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:37.691785' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:37.698478' WHERE "user_preferences"."id" = 2  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-02 18:31:37.699634' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:37.723568' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-02 18:31:37.724768' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-02 18:31:37.742327' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'GJ5RmiVuMM8Yr9jCqke1', "crypted_password" = '$2a$10$y8OqscIllcHKDwOUpTGllu8ulu54E0y7RakB7.4JnTnzn98qbO8jW', "updated_at" = '2013-01-02 18:31:37.869501' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 1  (0.1ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (1, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('truenorth@gmail.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('truenorth') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:37.896877' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:37.902490' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-02 18:31:37.903345' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:37.910725' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-02 18:31:37.911584' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 02 Jan 2013 18:31:37 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-02 18:31:37.914128' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 2, "salt" = 'dzfwPLkwppHpRJFhaCg4', "crypted_password" = '$2a$10$wILyPvXjxu.CPmh.kKWB9elMtVJXSa3t2PeIgrzpE1dZqEq9WDupO', "updated_at" = '2013-01-02 18:31:38.036513' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2013-01-02 18:31:38.037889' WHERE "users"."id" = 2 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 2  (0.1ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (2, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 3) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 3) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (2.3ms) commit transaction  (1.1ms) insert into data_migrations (version) values ('20110728201729')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201733'  (0.0ms) begin transaction PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'truenorth_logo_background' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'truenorth_tech.png', "updated_at" = '2013-01-02 18:31:38.069889' WHERE "preference_options"."id" = 3 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'grey_gradient_desktop_background' LIMIT 1 PreferenceType Load (0.2ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 5  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 5 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.1ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 5]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'purple_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 6  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 6 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 6]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'planet_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 7  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 7 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 7]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'portablemind_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 8  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 8 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 8]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'access_extjs_theme' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-access', "updated_at" = '2013-01-02 18:31:38.125384' WHERE "preference_options"."id" = 9 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'gray_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-gray', "updated_at" = '2013-01-02 18:31:38.127100' WHERE "preference_options"."id" = 10 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'blue_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all', "updated_at" = '2013-01-02 18:31:38.128449' WHERE "preference_options"."id" = 11 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Clifton Default"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["value", "clifton:clifton"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Clifton Green"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["value", "clifton:clifton-green"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Clifton Yellow"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["value", "clifton:clifton-yellow"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Clifton Pink"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["value", "clifton:clifton-pink"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Clifton Blue"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["value", "clifton:clifton-blue"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE "preference_types"."internal_identifier" = 'extjs_theme' LIMIT 1  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 12)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 13)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 14)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 15)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 16) AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Application') ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 1 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 2 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 4 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 5 and preferenced_record_type = 'AppContainer') LIMIT 1  (1.2ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110728201733')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.0ms) begin transaction SQL (0.6ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Thu, 03 Jan 2013 07:00:01 UTC +00:00], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]]  (0.6ms) commit transaction  (0.5ms) insert into data_migrations (version) values ('20110802200222')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110816161238'  (0.0ms) begin transaction Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Audit Log Viewer"], ["icon", "icon-history"], ["internal_identifier", "audit_log_viewer"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.AuditLogViewer"], ["shortcut_id", "audit_log_viewer-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 4], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 4], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."id" != 4 AND "applications"."type" = 'DesktopApplication') LIMIT 1  (0.7ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110816161238')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.0ms) begin transaction DesktopApplication Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 5) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 5) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1  (0.7ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20110817160743')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["version", #]]  (0.6ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110913145838')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.0ms) begin transaction SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'employee' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 SQL (0.3ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", nil], ["internal_identifier", "create"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'User' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "User"], ["capability_type_id", 2], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 1 LIMIT 1 SQL (0.3ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 1], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", nil], ["internal_identifier", "delete"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'User' AND "capabilities"."capability_type_id" = 3 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "User"], ["capability_type_id", 3], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 2], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "Note"], ["capability_type_id", 2], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 3], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 2 AND "capability_accessors"."capability_id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 2], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 3], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 2]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", nil], ["internal_identifier", "view"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 4 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "Note"], ["capability_type_id", 4], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 4 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 4], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 4 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 2 AND "capability_accessors"."capability_id" = 4 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 2], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 4], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 2]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 3 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "Note"], ["capability_type_id", 3], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 5 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 5], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20111108183739')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.1ms) begin transaction OrganizerApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "applications_widgets" ON "applications"."id" = "applications_widgets"."application_id" WHERE "applications_widgets"."widget_id" = 5  (0.2ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 5 AND "applications_widgets"."application_id" IN (3) SQL (0.1ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 5]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('phonenumbergrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('phone_number_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["xtype", "phonenumbergrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('emailaddressgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('email_address_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["xtype", "emailaddressgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('postaladdressgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('postal_address_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["xtype", "postaladdressgrid"]]  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 7)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 8)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 9) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 3 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (1.3ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20111108183740')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.0ms) begin transaction AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.6ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.4ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 3 AND "audit_log_types"."lft" < 4) AND ("audit_log_types".id != 2) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 5 AND "audit_log_types"."lft" < 6) AND ("audit_log_types".id != 3) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.1ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 7 AND "audit_log_types"."lft" < 8) AND ("audit_log_types".id != 4) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.1ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 9 AND "audit_log_types"."lft" < 10) AND ("audit_log_types".id != 5) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.1ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 11 AND "audit_log_types"."lft" < 12) AND ("audit_log_types".id != 6) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (0.7ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20111111144706')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.0ms) begin transaction Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('userinfo') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('userinfo') LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["xtype", "userinfo"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 10) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 3 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (0.5ms) commit transaction  (0.5ms) insert into data_migrations (version) values ('20120229160222')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.1ms) begin transaction  (0.0ms) commit transaction  (0.5ms) insert into data_migrations (version) values ('20120405193721')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.0ms) begin transaction Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.0ms) commit transaction  (0.6ms) insert into data_migrations (version) values ('20120411180756')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.1ms) begin transaction Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('configuration_management') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.6ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.2ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 4 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 4 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]]  (0.6ms) commit transaction  (0.6ms) insert into data_migrations (version) values ('20120418164215')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20121116155018'  (0.0ms) begin transaction RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Security Group"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "group"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Security Group Member"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "group_member"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00]] RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["description", "Security Group Membership"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "group_membership"], ["lft", 1], ["name", "Group Membership"], ["parent_id", nil], ["rgt", 2], ["updated_at", Wed, 02 Jan 2013 18:31:38 UTC +00:00], ["valid_from_role_type_id", 2], ["valid_to_role_type_id", 1]]  (0.8ms) commit transaction  (0.6ms) insert into data_migrations (version) values ('20121116155018')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20121130201859'  (0.0ms) begin transaction Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (32.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.3ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-02 18:31:39.057377', "updated_at" = '2013-01-02 18:31:39.057377' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user1@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin1') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["crypted_password", "$2a$10$Emc24Ot6XwtuWe94Q2eU9e1JWwiWykulDWab742N3m48QVg56dREi"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["username", "admin1"]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (2.9ms) Sent mail to user1@portablemind.com (51ms) Date: Wed, 02 Jan 2013 13:31:39 -0500 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <50e47d0b61377_56653fe9bd835ae0248eb@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:39.491367' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:39.496596' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-02 18:31:39.497473' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:39.516229' WHERE "user_preferences"."id" = 9  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-02 18:31:39.517311' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-02 18:31:39.529060' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-02 18:31:39.532452' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.2ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.2ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) Rendered inline template (0.3ms) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-02 18:31:39.593035' WHERE "users"."id" = 3 Completed 200 OK in 23ms (Views: 1.8ms | ActiveRecord: 1.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.3ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-02 18:31:39.599602', "updated_at" = '2013-01-02 18:31:39.599602' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user2@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin2') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["crypted_password", "$2a$10$VHx7ZaNhZ6kwfgoECQtEK.TJXLEOC0sxbAqK348hW6Oz3wEqeNo56"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["username", "admin2"]] Sent mail to user2@portablemind.com (7ms) Date: Wed, 02 Jan 2013 13:31:39 -0500 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <50e47d0ba7eb2_56653fe9bd835ae024959@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:39.700840' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:39.705221' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-02 18:31:39.705896' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:39.711945' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-02 18:31:39.713120' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-02 18:31:39.716448' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.1ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-02 18:31:39.718360' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 404 Not Found in 0ms  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-02 18:31:39.727554', "updated_at" = '2013-01-02 18:31:39.727554' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user3@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin3') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["crypted_password", "$2a$10$ZbctP3KDn/1jTEb6UlJZnuOG3bVIPmhPmUGnop6FyP6Tdk15aS.fq"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["username", "admin3"]] Sent mail to user3@portablemind.com (7ms) Date: Wed, 02 Jan 2013 13:31:39 -0500 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <50e47d0bc77aa_56653fe9bd835ae0250c5@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:39.829835' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:39.834198' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-02 18:31:39.834873' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:39.842122' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-02 18:31:39.843303' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-02 18:31:39.846395' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-02 18:31:39.848130' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.0ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.1ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-02 18:31:39.853015' WHERE "users"."id" = 3 Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.3ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-02 18:31:39.894540', "updated_at" = '2013-01-02 18:31:39.894540' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user4@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin4') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["crypted_password", "$2a$10$AswP/3cgiYJ4RPg27p3VK.sv4wNodDJXr0AvZr6Ii7nViOJ9xC9uK"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["username", "admin4"]] Sent mail to user4@portablemind.com (7ms) Date: Wed, 02 Jan 2013 13:31:39 -0500 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <50e47d0bef8bc_56653fe9bd835ae0251cf@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:39.993676' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:39.998024' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-02 18:31:39.998693' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 02 Jan 2013 18:31:39 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-02 18:31:40.004416' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-02 18:31:40.005120' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-02 18:31:40.007080' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-02 18:31:40.008276' WHERE "users"."id" = 3  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 5], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["valid_from_role_type_id", 9], ["valid_to_role_type_id", 10]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-02 18:31:40.078069' WHERE "users"."id" = 3 Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.1ms)  (1.9ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-02 18:31:40.153523', "updated_at" = '2013-01-02 18:31:40.153523' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 3], ["role_type_id_to", 4], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.3ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-02 18:31:40.176900', "updated_at" = '2013-01-02 18:31:40.176900' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 3], ["role_type_id_to", 4], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-02 18:31:40.198850', "updated_at" = '2013-01-02 18:31:40.198850' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-02 18:31:40.207812', "updated_at" = '2013-01-02 18:31:40.207812' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 3], ["role_type_id_to", 4], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 5], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 3], ["role_type_id_from", 9], ["role_type_id_to", 10], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-02 18:31:40.243656', "updated_at" = '2013-01-02 18:31:40.243656' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 3], ["role_type_id_to", 4], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["value", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Wed, 02 Jan 2013 18:31:40 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction Connecting to database specified by database.yml NoteType Load (2.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.5ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to BaseErpServices (20130102183121)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal(3,8), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.1ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.1ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.1ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.1ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.1ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.1ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.1ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)  (0.1ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.1ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.1ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" decimal(8,2), "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.1ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.1ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.1ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.1ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.1ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.1ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.1ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.1ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)   (0.1ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.1ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.1ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.1ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.1ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.1ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.1ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183121')  (1.6ms) commit transaction Migrating to BaseTechServices (20130102183122)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.1ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "security_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.1ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.1ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "width" varchar(255), "height" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.2ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.1ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capability_type_id" integer, "capability_resource_type" varchar(255), "capability_resource_id" integer, "scope_type_id" integer, "scope_query" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE INDEX "index_capabilities_on_scope_type_id" ON "capabilities" ("scope_type_id")  (0.1ms) CREATE INDEX "capability_resource_index" ON "capabilities" ("capability_resource_id", "capability_resource_type")  (0.1ms) CREATE TABLE "capability_accessors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capability_accessor_record_type" varchar(255), "capability_accessor_record_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capability_accessors_on_capability_id" ON "capability_accessors" ("capability_id")  (0.1ms) CREATE INDEX "capability_accessor_record_index" ON "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type")  (0.1ms) CREATE TABLE "scope_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_scope_types_on_internal_identifier" ON "scope_types" ("internal_identifier")  (0.1ms) CREATE TABLE "parties_security_roles" ("party_id" integer, "security_role_id" integer)  (0.1ms) CREATE INDEX "index_parties_security_roles_on_party_id" ON "parties_security_roles" ("party_id")  (0.1ms) CREATE INDEX "index_parties_security_roles_on_security_role_id" ON "parties_security_roles" ("security_role_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183122')  (1.1ms) commit transaction Migrating to CreateHasAttributeTables (20130102183123)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.1ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.1ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.1ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183123')  (0.9ms) commit transaction Migrating to CreateGroups (20130102183124)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183124')  (0.5ms) commit transaction Migrating to UpgradeSecurity (20130102183125)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183125')  (0.7ms) commit transaction Migrating to UpgradeSecurity2 (20130102183126)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183126')  (0.7ms) commit transaction Migrating to BaseAppFramework (20130102183127)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.1ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.1ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.1ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.1ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))   (0.1ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.1ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.1ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.1ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.1ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.1ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)   (0.1ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.1ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.1ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.1ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "is_template" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configurations_on_is_template" ON "configurations" ("is_template")  (0.1ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.1ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.1ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)  (0.2ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.3ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.1ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.1ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.1ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.1ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.1ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.1ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.1ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183127')  (1.4ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml NoteType Load (2.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.6ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.1ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110109173616'  (0.0ms) begin transaction CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'download') LIMIT 1 SQL (6.9ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:16 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Fri, 04 Jan 2013 22:01:16 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'instance') LIMIT 1 SQL (0.3ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:16 UTC +00:00], ["description", "Instance"], ["internal_identifier", "instance"], ["updated_at", Fri, 04 Jan 2013 22:01:16 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'class') LIMIT 1 SQL (0.2ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:16 UTC +00:00], ["description", "Class"], ["internal_identifier", "class"], ["updated_at", Fri, 04 Jan 2013 22:01:16 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'query') LIMIT 1 SQL (0.1ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:16 UTC +00:00], ["description", "Query"], ["internal_identifier", "query"], ["updated_at", Fri, 04 Jan 2013 22:01:16 UTC +00:00]]  (1.1ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110109173616')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:16 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Fri, 04 Jan 2013 22:01:16 UTC +00:00]]  (0.7ms) commit transaction  (0.6ms) insert into data_migrations (version) values ('20110525001935')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.0ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.8ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110609150135')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.0ms) begin transaction ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles"  SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["value", "yes"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Planet"], ["internal_identifier", "planet_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:17 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.3ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-01-04 22:01:18.013745' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-01-04 22:01:18.016579' WHERE "preference_types"."id" = 4  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2013-01-04 22:01:18.019091' WHERE "preference_types"."id" = 1  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2013-01-04 22:01:18.020873' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "note_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('shared_notesgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["xtype", "shared_notesgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('shared_notesgrid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('application_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('application_management') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('role_management') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('role_management') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') AND "widgets"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["xtype", "contactmechanismgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('partygrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["xtype", "partygrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('partygrid') AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') AND "widgets"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 5)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 6)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 3 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["weight", nil]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2013-01-04 22:01:18.256635', "updated_at" = '2013-01-04 22:01:18.256635' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.3ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2013-01-04 22:01:18.337290', "updated_at" = '2013-01-04 22:01:18.337290' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.1ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('admin@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["username", "admin"]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:18.496988' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:18.503599' WHERE "user_preferences"."id" = 2  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-04 22:01:18.504738' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:18.528304' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-04 22:01:18.529465' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-04 22:01:18.547964' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'sS1QNwj8ZDPpeonhLHxs', "crypted_password" = '$2a$10$SP/xBFL2AsFrrkeRSEKdi.p9ihE64gcPp8MtCwEkRhTKQm7.l2sPy', "updated_at" = '2013-01-04 22:01:18.674811' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 1  (0.1ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (1, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('truenorth@gmail.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('truenorth') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["username", "truenorth"]] SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:18.701892' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:18.707413' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-04 22:01:18.708251' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:18.715446' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-04 22:01:18.716280' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-04 22:01:18.718805' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 2, "salt" = 'hCZRUg4w5gzRzpSPssYU', "crypted_password" = '$2a$10$8rV2p5OLTAGBrZghle9OPOrz6VbtqF.5GqeKQSliQejtFWzEofuF2', "updated_at" = '2013-01-04 22:01:18.840675' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2013-01-04 22:01:18.841892' WHERE "users"."id" = 2 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 2  (0.1ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (2, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 3) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 3) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (2.4ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110728201729')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201733'  (0.0ms) begin transaction PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'truenorth_logo_background' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'truenorth_tech.png', "updated_at" = '2013-01-04 22:01:18.873677' WHERE "preference_options"."id" = 3 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'grey_gradient_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 5  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 5 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.1ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 5]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'purple_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 6  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 6 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 6]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'planet_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 7  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 7 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 7]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'portablemind_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 8  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 8 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 8]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'access_extjs_theme' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-access', "updated_at" = '2013-01-04 22:01:18.886385' WHERE "preference_options"."id" = 9 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'gray_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-gray', "updated_at" = '2013-01-04 22:01:18.888017' WHERE "preference_options"."id" = 10 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'blue_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all', "updated_at" = '2013-01-04 22:01:18.889342' WHERE "preference_options"."id" = 11 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Clifton Default"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["value", "clifton:clifton"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Clifton Green"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["value", "clifton:clifton-green"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Clifton Yellow"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["value", "clifton:clifton-yellow"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Clifton Pink"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["value", "clifton:clifton-pink"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Clifton Blue"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["value", "clifton:clifton-blue"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE "preference_types"."internal_identifier" = 'extjs_theme' LIMIT 1  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 12)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 13)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 14)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 15)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 16) AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Application') ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 1 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 2 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 4 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 5 and preferenced_record_type = 'AppContainer') LIMIT 1  (1.0ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110728201733')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.0ms) begin transaction SQL (0.6ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Sat, 05 Jan 2013 07:00:01 UTC +00:00], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]]  (0.8ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110802200222')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110816161238'  (0.0ms) begin transaction Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00], ["description", "Audit Log Viewer"], ["icon", "icon-history"], ["internal_identifier", "audit_log_viewer"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.AuditLogViewer"], ["shortcut_id", "audit_log_viewer-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:01:18 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 4], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 4], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."id" != 4 AND "applications"."type" = 'DesktopApplication') LIMIT 1  (0.7ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20110816161238')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.0ms) begin transaction DesktopApplication Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 5) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 5) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1  (0.8ms) commit transaction  (1.0ms) insert into data_migrations (version) values ('20110817160743')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["version", #]]  (0.9ms) commit transaction  (0.6ms) insert into data_migrations (version) values ('20110913145838')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.0ms) begin transaction SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'employee' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 SQL (0.3ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'User' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "User"], ["capability_type_id", 2], ["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (5.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00]]  (0.3ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:01:19.485980', "updated_at" = '2013-01-04 22:01:19.485980' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user1@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin1') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["crypted_password", "$2a$10$BZm681YgUAmOE5h6I7XSaevolek/W9fs7ThuhpFoom3oLDsTEZx86"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["username", "admin1"]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (3.3ms) Sent mail to user1@portablemind.com (50ms) Date: Fri, 04 Jan 2013 17:01:19 -0500 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <50e7512fc94c9_8d873ffc1dc35ad83163f@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:19.889140' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:19.894323' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:01:19.895197' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:19.941859' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:01:19.942814' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:01:19.954294' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:01:19.957704' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.2ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) Rendered inline template (0.2ms) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-04 22:01:19.979513' WHERE "users"."id" = 3 Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.8ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00]]  (0.3ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:01:19.984751', "updated_at" = '2013-01-04 22:01:19.984751' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user2@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin2') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["crypted_password", "$2a$10$Xt5kWM5tg3OG0SCR5thZouc8lq9uFTiPXiWSF74qSRfjfRKMTjq6C"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["username", "admin2"]] Sent mail to user2@portablemind.com (7ms) Date: Fri, 04 Jan 2013 17:01:20 -0500 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <50e75130118c6_8d873ffc1dc35ad831751@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:20.084215' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:20.088696' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:01:20.089385' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:20.095108' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:01:20.095775' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:01:20.097721' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:01:20.098922' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 404 Not Found in 0ms  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:01:20.107548', "updated_at" = '2013-01-04 22:01:20.107548' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.2ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user3@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin3') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["crypted_password", "$2a$10$Jubr71PM3vs4chxRI11U2e1XV4egd5QvEQsmiWqecdkd9rH8lpaQ2"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["username", "admin3"]] Sent mail to user3@portablemind.com (7ms) Date: Fri, 04 Jan 2013 17:01:20 -0500 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <50e75130378c5_8d873ffc1dc35ad83183@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:20.240309' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:20.244904' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:01:20.245639' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:20.251517' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:01:20.252228' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:01:20.254210' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:01:20.255421' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.0ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.1ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-04 22:01:20.259353' WHERE "users"."id" = 3 Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.2ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:01:20.268870', "updated_at" = '2013-01-04 22:01:20.268870' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user4@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin4') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["crypted_password", "$2a$10$6779BqLuYl/F6rdvhNcF2OHmCef3S6SaE4gJNpVwpQoCJLO95pOS6"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["username", "admin4"]] Sent mail to user4@portablemind.com (7ms) Date: Fri, 04 Jan 2013 17:01:20 -0500 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <50e7513056d73_8d873ffc1dc35ad8319ba@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:20.369010' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:20.374022' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:01:20.374763' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:01:20.380688' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:01:20.381389' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:01:20.383361' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:01:20.384560' WHERE "users"."id" = 3  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.2ms) UPDATE "users" SET "last_activity_at" = '2013-01-04 22:01:20.473313' WHERE "users"."id" = 3 Completed 200 OK in 40ms (Views: 36.9ms | ActiveRecord: 0.2ms)  (1.9ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:01:20.515852', "updated_at" = '2013-01-04 22:01:20.515852' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:01:20.539514', "updated_at" = '2013-01-04 22:01:20.539514' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:01:20.559012', "updated_at" = '2013-01-04 22:01:20.559012' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:01:20.567995', "updated_at" = '2013-01-04 22:01:20.567995' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:01:20.602618', "updated_at" = '2013-01-04 22:01:20.602618' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["value", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:01:20 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction Connecting to database specified by database.yml NoteType Load (1.6ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.0ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to BaseErpServices (20130102183121)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal(3,8), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.1ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.1ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.1ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.1ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.1ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.1ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.1ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)  (0.1ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.1ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.1ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" decimal(8,2), "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.1ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.1ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.1ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.1ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.1ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.1ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.1ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.1ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)   (0.1ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.1ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.1ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.1ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.1ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.1ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.1ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183121')  (2.4ms) commit transaction Migrating to BaseTechServices (20130102183122)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.1ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "security_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.1ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.1ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "width" varchar(255), "height" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.1ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capability_type_id" integer, "capability_resource_type" varchar(255), "capability_resource_id" integer, "scope_type_id" integer, "scope_query" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE INDEX "index_capabilities_on_scope_type_id" ON "capabilities" ("scope_type_id")  (0.1ms) CREATE INDEX "capability_resource_index" ON "capabilities" ("capability_resource_id", "capability_resource_type")  (0.1ms) CREATE TABLE "capability_accessors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capability_accessor_record_type" varchar(255), "capability_accessor_record_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capability_accessors_on_capability_id" ON "capability_accessors" ("capability_id")  (0.1ms) CREATE INDEX "capability_accessor_record_index" ON "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type")  (0.1ms) CREATE TABLE "scope_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_scope_types_on_internal_identifier" ON "scope_types" ("internal_identifier")  (0.1ms) CREATE TABLE "parties_security_roles" ("party_id" integer, "security_role_id" integer)  (0.1ms) CREATE INDEX "index_parties_security_roles_on_party_id" ON "parties_security_roles" ("party_id")  (0.1ms) CREATE INDEX "index_parties_security_roles_on_security_role_id" ON "parties_security_roles" ("security_role_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183122')  (1.0ms) commit transaction Migrating to CreateHasAttributeTables (20130102183123)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.1ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.1ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.2ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183123')  (0.7ms) commit transaction Migrating to CreateGroups (20130102183124)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183124')  (0.6ms) commit transaction Migrating to UpgradeSecurity (20130102183125)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183125')  (0.7ms) commit transaction Migrating to UpgradeSecurity2 (20130102183126)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183126')  (0.8ms) commit transaction Migrating to BaseAppFramework (20130102183127)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.1ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.1ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.1ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.1ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))   (0.1ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.1ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.1ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.1ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.1ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.1ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)   (0.1ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.1ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.1ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.1ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "is_template" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configurations_on_is_template" ON "configurations" ("is_template")  (0.1ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.1ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.1ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)  (0.1ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.3ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.1ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.1ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.1ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.1ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.1ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.1ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.1ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183127')  (1.4ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml NoteType Load (2.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.3ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.1ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110109173616'  (0.0ms) begin transaction CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'download') LIMIT 1 SQL (6.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:16 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Fri, 04 Jan 2013 22:05:16 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'instance') LIMIT 1 SQL (0.3ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:16 UTC +00:00], ["description", "Instance"], ["internal_identifier", "instance"], ["updated_at", Fri, 04 Jan 2013 22:05:16 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'class') LIMIT 1 SQL (0.1ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:16 UTC +00:00], ["description", "Class"], ["internal_identifier", "class"], ["updated_at", Fri, 04 Jan 2013 22:05:16 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'query') LIMIT 1 SQL (0.1ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:16 UTC +00:00], ["description", "Query"], ["internal_identifier", "query"], ["updated_at", Fri, 04 Jan 2013 22:05:16 UTC +00:00]]  (1.3ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110109173616')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:16 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Fri, 04 Jan 2013 22:05:16 UTC +00:00]]  (0.7ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110525001935')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.0ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.3ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110609150135')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.0ms) begin transaction ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles"  SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Planet"], ["internal_identifier", "planet_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.3ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-01-04 22:05:17.779319' WHERE "preference_types"."id" = 3  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-01-04 22:05:17.782149' WHERE "preference_types"."id" = 4  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2013-01-04 22:05:17.784750' WHERE "preference_types"."id" = 1  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2013-01-04 22:05:17.786588' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "note_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('shared_notesgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["xtype", "shared_notesgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('shared_notesgrid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('application_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('application_management') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('role_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('role_management') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') AND "widgets"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["xtype", "contactmechanismgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('partygrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["xtype", "partygrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('partygrid') AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') AND "widgets"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Fri, 04 Jan 2013 22:05:17 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 5)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 6)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 3 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["weight", nil]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2013-01-04 22:05:18.020436', "updated_at" = '2013-01-04 22:05:18.020436' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.3ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2013-01-04 22:05:18.099119', "updated_at" = '2013-01-04 22:05:18.099119' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.1ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('admin@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["username", "admin"]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:18.259826' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:18.266575' WHERE "user_preferences"."id" = 2  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-04 22:05:18.267739' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["user_id", 1]]  (0.3ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:18.291637' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-04 22:05:18.293023' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-04 22:05:18.309032' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'zXXq7PqnsmztLsQsCjLq', "crypted_password" = '$2a$10$aFZY//9K0iOdrKRXcvigH.YchyDjnbDqyGdQoFbFUqMpYfYSHK322', "updated_at" = '2013-01-04 22:05:18.434637' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 1  (0.1ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (1, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('truenorth@gmail.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('truenorth') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:18.462342' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:18.468121' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-04 22:05:18.468994' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:18.476498' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-04 22:05:18.477376' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-04 22:05:18.479981' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 2, "salt" = 'VrdSAp7qhjdsrgMfzoC7', "crypted_password" = '$2a$10$O.uU7yRqyXRG4JXZGfk5huf5acpF2udOgCv4Itw3j9XxlVVNydp/q', "updated_at" = '2013-01-04 22:05:18.601963' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2013-01-04 22:05:18.603192' WHERE "users"."id" = 2 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 2  (0.1ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (2, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 3) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 3) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (2.6ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20110728201729')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201733'  (0.0ms) begin transaction PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'truenorth_logo_background' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'truenorth_tech.png', "updated_at" = '2013-01-04 22:05:18.635502' WHERE "preference_options"."id" = 3 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'grey_gradient_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 5  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 5 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.1ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 5]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'purple_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 6  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 6 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 6]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'planet_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 7  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 7 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 7]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'portablemind_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 8  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 8 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 8]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'access_extjs_theme' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-access', "updated_at" = '2013-01-04 22:05:18.648000' WHERE "preference_options"."id" = 9 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'gray_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-gray', "updated_at" = '2013-01-04 22:05:18.649580' WHERE "preference_options"."id" = 10 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'blue_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all', "updated_at" = '2013-01-04 22:05:18.650919' WHERE "preference_options"."id" = 11 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", "Clifton Default"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["value", "clifton:clifton"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", "Clifton Green"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["value", "clifton:clifton-green"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", "Clifton Yellow"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["value", "clifton:clifton-yellow"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", "Clifton Pink"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["value", "clifton:clifton-pink"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", "Clifton Blue"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["value", "clifton:clifton-blue"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE "preference_types"."internal_identifier" = 'extjs_theme' LIMIT 1  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 12)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 13)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 14)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 15)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 16) AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Application') ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 1 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 2 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 4 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 5 and preferenced_record_type = 'AppContainer') LIMIT 1  (1.3ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110728201733')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Sat, 05 Jan 2013 07:00:01 UTC +00:00], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00]]  (0.8ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110802200222')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110816161238'  (0.0ms) begin transaction Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", "Audit Log Viewer"], ["icon", "icon-history"], ["internal_identifier", "audit_log_viewer"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.AuditLogViewer"], ["shortcut_id", "audit_log_viewer-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 4], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 4], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."id" != 4 AND "applications"."type" = 'DesktopApplication') LIMIT 1  (0.8ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110816161238')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.0ms) begin transaction DesktopApplication Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 5) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 5) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1  (0.8ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110817160743')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["version", #]]  (0.7ms) commit transaction  (0.5ms) insert into data_migrations (version) values ('20110913145838')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.0ms) begin transaction SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'employee' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 SQL (0.3ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'User' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "User"], ["capability_type_id", 2], ["created_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:05:18 UTC +00:00]]  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (31.3ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]]  (0.3ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:05:19.226819', "updated_at" = '2013-01-04 22:05:19.226819' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user1@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin1') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["crypted_password", "$2a$10$BiBh8cAUNFrWNUhOXRBbhOtEym/6GokPNIpD0Ke6C5tQWtDMj8EFe"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["username", "admin1"]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (2.5ms) Sent mail to user1@portablemind.com (47ms) Date: Fri, 04 Jan 2013 17:05:19 -0500 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <50e7521f8611c_8dd63fdbac835adc545b8@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:19.639910' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:19.645088' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:05:19.645961' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:19.662976' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:05:19.663890' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:05:19.675249' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:05:19.708053' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.2ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) Rendered inline template (0.2ms) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-04 22:05:19.727252' WHERE "users"."id" = 3 Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 0.7ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:05:19.733206', "updated_at" = '2013-01-04 22:05:19.733206' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user2@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin2') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["crypted_password", "$2a$10$um17.vXqyqA5X.HHvuiobebvhYe9YjWzcG4bd3QqiLkkSQQDRKelq"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["username", "admin2"]] Sent mail to user2@portablemind.com (7ms) Date: Fri, 04 Jan 2013 17:05:19 -0500 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <50e7521fc89e8_8dd63fdbac835adc54626@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:19.834299' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:19.838873' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:05:19.839582' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:19.845475' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:05:19.846180' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:05:19.848192' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:05:19.849401' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 404 Not Found in 0ms  (2.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:05:19.858088', "updated_at" = '2013-01-04 22:05:19.858088' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user3@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin3') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["crypted_password", "$2a$10$hxe0PUl9KA6hCSSBqdMtOuebPUD1cHha4unngM2EklI3nvlbnuWlO"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["username", "admin3"]] Sent mail to user3@portablemind.com (7ms) Date: Fri, 04 Jan 2013 17:05:19 -0500 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <50e7521fe6c47_8dd63fdbac835adc547de@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:19.959266' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:19.964423' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:05:19.965228' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:19.973554' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:05:19.974359' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:05:19 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:05:19.976400' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:05:19.977666' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.0ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.1ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-04 22:05:19.981648' WHERE "users"."id" = 3 Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:05:20.025182', "updated_at" = '2013-01-04 22:05:20.025182' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user4@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin4') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["crypted_password", "$2a$10$RSI6L/oyztOfFdR7wcx6Ke0XoDfrbdrHa51..cLmaYsKXu9eFs4ey"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["username", "admin4"]] Sent mail to user4@portablemind.com (7ms) Date: Fri, 04 Jan 2013 17:05:20 -0500 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <50e752201b873_8dd63fdbac835adc54819@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:20.125653' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:20.130348' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:05:20.131067' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:05:20.137074' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:05:20.137808' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:05:20.139879' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:05:20.141114' WHERE "users"."id" = 3  (0.1ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-04 22:05:20.214268' WHERE "users"."id" = 3 Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" IS NULL) LIMIT 1 SQL (0.5ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["user_id", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:05:20.293818', "updated_at" = '2013-01-04 22:05:20.293818' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:05:20.316037', "updated_at" = '2013-01-04 22:05:20.316037' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.2ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:05:20.336136', "updated_at" = '2013-01-04 22:05:20.336136' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:05:20.345766', "updated_at" = '2013-01-04 22:05:20.345766' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:05:20.382170', "updated_at" = '2013-01-04 22:05:20.382170' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["value", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:05:20 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction Connecting to database specified by database.yml NoteType Load (1.6ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to BaseErpServices (20130102183121)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal(3,8), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.1ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.1ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.1ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.1ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.1ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.1ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.1ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)  (0.1ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.1ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.1ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" decimal(8,2), "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.1ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.1ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.1ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.1ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.1ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.1ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.1ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.1ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)   (0.1ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.1ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.1ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.1ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.1ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.1ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.1ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183121')  (2.6ms) commit transaction Migrating to BaseTechServices (20130102183122)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.1ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "security_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.1ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.1ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "width" varchar(255), "height" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.1ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capability_type_id" integer, "capability_resource_type" varchar(255), "capability_resource_id" integer, "scope_type_id" integer, "scope_query" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE INDEX "index_capabilities_on_scope_type_id" ON "capabilities" ("scope_type_id")  (0.1ms) CREATE INDEX "capability_resource_index" ON "capabilities" ("capability_resource_id", "capability_resource_type")  (0.1ms) CREATE TABLE "capability_accessors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capability_accessor_record_type" varchar(255), "capability_accessor_record_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capability_accessors_on_capability_id" ON "capability_accessors" ("capability_id")  (0.1ms) CREATE INDEX "capability_accessor_record_index" ON "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type")  (0.1ms) CREATE TABLE "scope_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_scope_types_on_internal_identifier" ON "scope_types" ("internal_identifier")  (0.1ms) CREATE TABLE "parties_security_roles" ("party_id" integer, "security_role_id" integer)  (0.1ms) CREATE INDEX "index_parties_security_roles_on_party_id" ON "parties_security_roles" ("party_id")  (0.1ms) CREATE INDEX "index_parties_security_roles_on_security_role_id" ON "parties_security_roles" ("security_role_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183122')  (1.0ms) commit transaction Migrating to CreateHasAttributeTables (20130102183123)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.1ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.1ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.1ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183123')  (0.8ms) commit transaction Migrating to CreateGroups (20130102183124)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183124')  (0.7ms) commit transaction Migrating to UpgradeSecurity (20130102183125)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183125')  (0.7ms) commit transaction Migrating to UpgradeSecurity2 (20130102183126)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183126')  (0.7ms) commit transaction Migrating to BaseAppFramework (20130102183127)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.1ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.1ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.1ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.1ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))   (0.1ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.1ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.1ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.1ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.1ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.1ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)   (0.1ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.1ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.1ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.1ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "is_template" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configurations_on_is_template" ON "configurations" ("is_template")  (0.1ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.1ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.1ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.1ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)  (0.1ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.3ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.1ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.1ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.1ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.1ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.1ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.1ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.1ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183127')  (1.3ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml NoteType Load (2.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.3ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.1ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110109173616'  (0.0ms) begin transaction CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'download') LIMIT 1 SQL (6.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:06 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Fri, 04 Jan 2013 22:06:06 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'instance') LIMIT 1 SQL (0.3ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Instance"], ["internal_identifier", "instance"], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'class') LIMIT 1 SQL (0.1ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Class"], ["internal_identifier", "class"], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'query') LIMIT 1 SQL (0.1ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Query"], ["internal_identifier", "query"], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]]  (1.3ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20110109173616')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]]  (0.8ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110525001935')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.0ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] SQL (3.3ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.4ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20110609150135')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.0ms) begin transaction ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Fri, 04 Jan 2013 22:06:07 UTC +00:00]] SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles"  SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "yes"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Planet"], ["internal_identifier", "planet_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.2ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-01-04 22:06:08.118527' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-01-04 22:06:08.121306' WHERE "preference_types"."id" = 4  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2013-01-04 22:06:08.123908' WHERE "preference_types"."id" = 1  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2013-01-04 22:06:08.125730' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "note_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('shared_notesgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["xtype", "shared_notesgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('shared_notesgrid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('application_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('application_management') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('role_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('role_management') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') AND "widgets"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["xtype", "contactmechanismgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('partygrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["xtype", "partygrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('partygrid') AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') AND "widgets"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 5)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 6)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 3 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["weight", nil]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2013-01-04 22:06:08.358353', "updated_at" = '2013-01-04 22:06:08.358353' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.3ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2013-01-04 22:06:08.436618', "updated_at" = '2013-01-04 22:06:08.436618' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.1ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('admin@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["username", "admin"]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:08.595739' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:08.602570' WHERE "user_preferences"."id" = 2  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-04 22:06:08.603716' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:08.627165' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-04 22:06:08.628334' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-04 22:06:08.644982' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'dNdb6peAJzLu7VpFVQsT', "crypted_password" = '$2a$10$ZCSEfqgiyr62GzeqBVx/yuPGn0n0qc36xc1RpqZ8/lI8V/W4IWGEO', "updated_at" = '2013-01-04 22:06:08.770815' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 1  (0.1ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (1, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('truenorth@gmail.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('truenorth') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:08.797667' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:08.803260' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-04 22:06:08.804124' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:08.811440' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-04 22:06:08.812287' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-04 22:06:08.814822' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 2, "salt" = 'tC3uYsqAWWkznx6zfCs7', "crypted_password" = '$2a$10$07osR3HtwOTDpthLJKbjNeguyFXhJ9azJmGb2sOOYkDEtrd3qRBDy', "updated_at" = '2013-01-04 22:06:08.936640' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2013-01-04 22:06:08.937748' WHERE "users"."id" = 2 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 2  (0.0ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (2, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 3) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 3) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (2.6ms) commit transaction  (1.0ms) insert into data_migrations (version) values ('20110728201729')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201733'  (0.0ms) begin transaction PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'truenorth_logo_background' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'truenorth_tech.png', "updated_at" = '2013-01-04 22:06:08.969450' WHERE "preference_options"."id" = 3 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'grey_gradient_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 5  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 5 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.1ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 5]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'purple_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 6  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 6 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 6]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'planet_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 7  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 7 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 7]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'portablemind_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 8  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 8 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 8]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'access_extjs_theme' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-access', "updated_at" = '2013-01-04 22:06:08.981652' WHERE "preference_options"."id" = 9 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'gray_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-gray', "updated_at" = '2013-01-04 22:06:08.983199' WHERE "preference_options"."id" = 10 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'blue_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all', "updated_at" = '2013-01-04 22:06:08.984481' WHERE "preference_options"."id" = 11 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Clifton Default"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "clifton:clifton"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Clifton Green"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "clifton:clifton-green"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Clifton Yellow"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "clifton:clifton-yellow"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Clifton Pink"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "clifton:clifton-pink"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["description", "Clifton Blue"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:08 UTC +00:00], ["value", "clifton:clifton-blue"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE "preference_types"."internal_identifier" = 'extjs_theme' LIMIT 1  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 12)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 13)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 14)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 15)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 16) AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Application') ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 1 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 2 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 4 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 5 and preferenced_record_type = 'AppContainer') LIMIT 1  (1.1ms) commit transaction  (0.6ms) insert into data_migrations (version) values ('20110728201733')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Sat, 05 Jan 2013 07:00:01 UTC +00:00], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00]]  (0.7ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110802200222')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110816161238'  (0.0ms) begin transaction Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["description", "Audit Log Viewer"], ["icon", "icon-history"], ["internal_identifier", "audit_log_viewer"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.AuditLogViewer"], ["shortcut_id", "audit_log_viewer-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 4], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 4], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."id" != 4 AND "applications"."type" = 'DesktopApplication') LIMIT 1  (0.9ms) commit transaction  (0.6ms) insert into data_migrations (version) values ('20110816161238')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.0ms) begin transaction DesktopApplication Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 5) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 5) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1  (0.8ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110817160743')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["version", #]]  (0.8ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110913145838')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.0ms) begin transaction SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'employee' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 SQL (0.3ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'User' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "User"], ["capability_type_id", 2], ["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (31.3ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00]]  (0.3ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:06:09.550227', "updated_at" = '2013-01-04 22:06:09.550227' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user1@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin1') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["crypted_password", "$2a$10$TeyDxJk3Jsdx3vKKSnfKBeSNbF052fdGQcKPisQaQr5ZEDaCw6FJW"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["username", "admin1"]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (2.5ms) Sent mail to user1@portablemind.com (47ms) Date: Fri, 04 Jan 2013 17:06:09 -0500 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <50e75251d48dd_8dee3fc881835ad442471@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:09.964286' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:09.969600' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:06:09.970482' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:09.988009' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:06:09.988935' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:06:09 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:06:10.000629' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:06:10.034384' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.2ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) Rendered inline template (0.2ms) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-04 22:06:10.055065' WHERE "users"."id" = 3 Completed 200 OK in 15ms (Views: 1.2ms | ActiveRecord: 0.8ms)  (1.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:06:10.061766', "updated_at" = '2013-01-04 22:06:10.061766' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user2@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin2') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["crypted_password", "$2a$10$KczcUKNG915a9/sdFqyH1eTSDWqqXDl8vJZoK71ubmYQdRblw9HC."], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["username", "admin2"]] Sent mail to user2@portablemind.com (7ms) Date: Fri, 04 Jan 2013 17:06:10 -0500 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <50e75252246f2_8dee3fc881835ad4425ab@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:10.161764' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:10.166230' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:06:10.166913' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:10.172644' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:06:10.173332' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:06:10.175273' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:06:10.176465' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 404 Not Found in 0ms  (1.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:06:10.184890', "updated_at" = '2013-01-04 22:06:10.184890' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user3@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin3') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["crypted_password", "$2a$10$zfsLD2GZLGbJV4v1WXHzQub4Aya8y3VQbzT/MsG7s5G1YX/zKZkqi"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["username", "admin3"]] Sent mail to user3@portablemind.com (8ms) Date: Fri, 04 Jan 2013 17:06:10 -0500 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <50e75252425b4_8dee3fc881835ad44264d@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:10.285890' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:10.291087' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:06:10.291868' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:10.300072' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:06:10.300864' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:06:10.302927' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:06:10.304193' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.0ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.1ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-04 22:06:10.308191' WHERE "users"."id" = 3 Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:06:10.349779', "updated_at" = '2013-01-04 22:06:10.349779' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user4@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin4') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["crypted_password", "$2a$10$67ArpGnJ2ce3UWMbovPvSeMK7XfveaTJu/JRVVTa5UPDdxP1lZ9Ge"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["username", "admin4"]] Sent mail to user4@portablemind.com (7ms) Date: Fri, 04 Jan 2013 17:06:10 -0500 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <50e752526ae36_8dee3fc881835ad442742@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:10.450362' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:10.454749' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:06:10.455437' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:06:10.461149' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:06:10.461843' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:06:10.463778' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:06:10.464965' WHERE "users"."id" = 3  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-04 22:06:10.535941' WHERE "users"."id" = 3 Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:06:10.614680', "updated_at" = '2013-01-04 22:06:10.614680' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["weight", 180]] SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:06:10.636626', "updated_at" = '2013-01-04 22:06:10.636626' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:06:10.656035', "updated_at" = '2013-01-04 22:06:10.656035' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:06:10.665203', "updated_at" = '2013-01-04 22:06:10.665203' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.3ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:06:10.700536', "updated_at" = '2013-01-04 22:06:10.700536' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.5ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["value", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:06:10 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction Connecting to database specified by database.yml NoteType Load (1.7ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to BaseErpServices (20130102183121)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal(3,8), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.1ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.1ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.1ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.1ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.4ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.1ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.1ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.1ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)  (0.1ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.1ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.1ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" decimal(8,2), "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.1ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.1ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.1ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.1ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.1ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.1ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.1ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.1ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)   (0.1ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.1ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.1ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.1ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.1ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.1ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.1ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183121')  (2.4ms) commit transaction Migrating to BaseTechServices (20130102183122)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.1ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "security_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.1ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.1ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "width" varchar(255), "height" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.1ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capability_type_id" integer, "capability_resource_type" varchar(255), "capability_resource_id" integer, "scope_type_id" integer, "scope_query" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE INDEX "index_capabilities_on_scope_type_id" ON "capabilities" ("scope_type_id")  (0.1ms) CREATE INDEX "capability_resource_index" ON "capabilities" ("capability_resource_id", "capability_resource_type")  (0.1ms) CREATE TABLE "capability_accessors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capability_accessor_record_type" varchar(255), "capability_accessor_record_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capability_accessors_on_capability_id" ON "capability_accessors" ("capability_id")  (0.1ms) CREATE INDEX "capability_accessor_record_index" ON "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type")  (0.1ms) CREATE TABLE "scope_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_scope_types_on_internal_identifier" ON "scope_types" ("internal_identifier")  (0.1ms) CREATE TABLE "parties_security_roles" ("party_id" integer, "security_role_id" integer)  (0.1ms) CREATE INDEX "index_parties_security_roles_on_party_id" ON "parties_security_roles" ("party_id")  (0.1ms) CREATE INDEX "index_parties_security_roles_on_security_role_id" ON "parties_security_roles" ("security_role_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183122')  (1.1ms) commit transaction Migrating to CreateHasAttributeTables (20130102183123)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.1ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.1ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.1ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183123')  (0.6ms) commit transaction Migrating to CreateGroups (20130102183124)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183124')  (0.6ms) commit transaction Migrating to UpgradeSecurity (20130102183125)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183125')  (0.7ms) commit transaction Migrating to UpgradeSecurity2 (20130102183126)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183126')  (0.6ms) commit transaction Migrating to BaseAppFramework (20130102183127)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.1ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.1ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.1ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.1ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))   (0.1ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.1ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.1ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.1ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.1ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.1ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)   (0.1ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.1ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.1ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.1ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "is_template" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configurations_on_is_template" ON "configurations" ("is_template")  (0.1ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.1ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.1ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.1ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)  (0.1ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.3ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.1ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.1ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.1ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.1ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.1ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.1ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.1ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130102183127')  (1.6ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml NoteType Load (2.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.5ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.1ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110109173616'  (0.0ms) begin transaction CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'download') LIMIT 1 SQL (6.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'instance') LIMIT 1 SQL (0.3ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Instance"], ["internal_identifier", "instance"], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'class') LIMIT 1 SQL (0.1ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Class"], ["internal_identifier", "class"], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'query') LIMIT 1 SQL (0.1ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Query"], ["internal_identifier", "query"], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]]  (1.1ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110109173616')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]]  (0.7ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110525001935')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.0ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.5ms) commit transaction  (1.0ms) insert into data_migrations (version) values ('20110609150135')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.0ms) begin transaction ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.3ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Fri, 04 Jan 2013 22:07:51 UTC +00:00]] SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles"  SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "yes"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Planet"], ["internal_identifier", "planet_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.3ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-01-04 22:07:52.129802' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-01-04 22:07:52.132613' WHERE "preference_types"."id" = 4  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2013-01-04 22:07:52.135117' WHERE "preference_types"."id" = 1  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2013-01-04 22:07:52.136887' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "note_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('shared_notesgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["xtype", "shared_notesgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('shared_notesgrid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('application_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('application_management') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('role_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('role_management') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') AND "widgets"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["xtype", "contactmechanismgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('partygrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["xtype", "partygrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('partygrid') AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') AND "widgets"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 5)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 6)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 3 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["weight", nil]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2013-01-04 22:07:52.367322', "updated_at" = '2013-01-04 22:07:52.367322' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.3ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2013-01-04 22:07:52.445258', "updated_at" = '2013-01-04 22:07:52.445258' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.1ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('admin@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["username", "admin"]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:52.603184' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:52.609740' WHERE "user_preferences"."id" = 2  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-04 22:07:52.610869' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:52.634181' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-04 22:07:52.635374' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-04 22:07:52.651693' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'Kk1F8KkpDKhZzUcep8Br', "crypted_password" = '$2a$10$/EDgPdxaJhQarhTLzB5xrOPh/6o3cAB4jPTwg9b2xfl/zyCCUJe1C', "updated_at" = '2013-01-04 22:07:52.777637' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 1  (0.1ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (1, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('truenorth@gmail.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('truenorth') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:52.804517' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:52.810062' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-04 22:07:52.810924' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:52.818217' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-04 22:07:52.819082' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-04 22:07:52.821652' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 2, "salt" = 'BK49qvYhyarwYKWjaVJ6', "crypted_password" = '$2a$10$.QGlElxMObKVOmNt4.8Wv.XiACbszN221RY9QqJwX163qaKkI61iy', "updated_at" = '2013-01-04 22:07:52.943645' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2013-01-04 22:07:52.944730' WHERE "users"."id" = 2 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 2  (0.0ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (2, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 3) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 3) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (2.7ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20110728201729')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201733'  (0.0ms) begin transaction PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'truenorth_logo_background' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'truenorth_tech.png', "updated_at" = '2013-01-04 22:07:52.976562' WHERE "preference_options"."id" = 3 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'grey_gradient_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 5  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 5 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.1ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 5]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'purple_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 6  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 6 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 6]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'planet_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 7  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 7 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 7]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'portablemind_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 8  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 8 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 8]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'access_extjs_theme' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-access', "updated_at" = '2013-01-04 22:07:52.988805' WHERE "preference_options"."id" = 9 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'gray_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-gray', "updated_at" = '2013-01-04 22:07:52.990396' WHERE "preference_options"."id" = 10 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'blue_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all', "updated_at" = '2013-01-04 22:07:52.991704' WHERE "preference_options"."id" = 11 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Clifton Default"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "clifton:clifton"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Clifton Green"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "clifton:clifton-green"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Clifton Yellow"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "clifton:clifton-yellow"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Clifton Pink"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "clifton:clifton-pink"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["description", "Clifton Blue"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:52 UTC +00:00], ["value", "clifton:clifton-blue"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE "preference_types"."internal_identifier" = 'extjs_theme' LIMIT 1  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 12)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 13)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 14)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 15)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 16) AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Application') ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 1 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 2 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 4 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 5 and preferenced_record_type = 'AppContainer') LIMIT 1  (1.7ms) commit transaction  (1.0ms) insert into data_migrations (version) values ('20110728201733')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Sat, 05 Jan 2013 07:00:01 UTC +00:00], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00]]  (0.9ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110802200222')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110816161238'  (0.0ms) begin transaction Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["description", "Audit Log Viewer"], ["icon", "icon-history"], ["internal_identifier", "audit_log_viewer"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.AuditLogViewer"], ["shortcut_id", "audit_log_viewer-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 4], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 4], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."id" != 4 AND "applications"."type" = 'DesktopApplication') LIMIT 1  (0.7ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110816161238')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.0ms) begin transaction DesktopApplication Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 5) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 5) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1  (0.8ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110817160743')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["version", #]]  (0.7ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110913145838')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.0ms) begin transaction SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'employee' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 SQL (0.3ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'User' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "User"], ["capability_type_id", 2], ["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (32.6ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00]]  (0.3ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:07:53.574065', "updated_at" = '2013-01-04 22:07:53.574065' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user1@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin1') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["crypted_password", "$2a$10$zSAm2oeVbLu8FWF59u38MeUcLIjlb51y3MqVWBmQP6zthz6HtaBVa"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["username", "admin1"]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (3.1ms) Sent mail to user1@portablemind.com (50ms) Date: Fri, 04 Jan 2013 17:07:53 -0500 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <50e752b9dd3d5_8e183fec14835adc97031@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:53 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:54.000155' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:54.005558' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:07:54.006446' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:54.023745' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:07:54.024662' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:07:54.036207' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:07:54.071817' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.2ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) Rendered inline template (0.2ms) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-04 22:07:54.094089' WHERE "users"."id" = 3 Completed 200 OK in 16ms (Views: 1.6ms | ActiveRecord: 0.8ms)  (1.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:07:54.100917', "updated_at" = '2013-01-04 22:07:54.100917' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user2@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin2') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["crypted_password", "$2a$10$AruCF4ExLwym9fmSE7jMnuMTB1C2sBi.Mmpuqts9hkZysGBVsZD/e"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["username", "admin2"]] Sent mail to user2@portablemind.com (7ms) Date: Fri, 04 Jan 2013 17:07:54 -0500 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <50e752ba2e157_8e183fec14835adc9719d@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:54.201714' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:54.206455' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:07:54.207173' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:54.213108' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:07:54.213823' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:07:54.215831' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:07:54.217045' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 404 Not Found in 0ms  (1.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:07:54.225152', "updated_at" = '2013-01-04 22:07:54.225152' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user3@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin3') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["crypted_password", "$2a$10$XejmGAyxyW43XPKVyD5WyO9ZMeyAUzOWAePfqNXPAo9tX4GkSbgkS"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["username", "admin3"]] Sent mail to user3@portablemind.com (7ms) Date: Fri, 04 Jan 2013 17:07:54 -0500 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <50e752ba4d73d_8e183fec14835adc972fb@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:54.331921' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:54.338123' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:07:54.338976' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", 3]]  (0.2ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:54.346834' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:07:54.348181' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:07:54.350571' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:07:54.351991' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.0ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.1ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-04 22:07:54.356371' WHERE "users"."id" = 3 Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.3ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.3ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:07:54.399796', "updated_at" = '2013-01-04 22:07:54.399796' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user4@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin4') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["crypted_password", "$2a$10$jdpJJ78f8Kvei3WJ/SoozeSjm.pUFc6LnBtxJJdELDbmutqo9b0.2"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["username", "admin4"]] Sent mail to user4@portablemind.com (7ms) Date: Fri, 04 Jan 2013 17:07:54 -0500 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <50e752ba7737c_8e183fec14835adc973a4@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:54.501704' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:54.506445' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:07:54.507165' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-04 22:07:54.513140' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:07:54.513889' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-04 22:07:54.515881' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-04 22:07:54.517087' WHERE "users"."id" = 3  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-04 22:07:54.591354' WHERE "users"."id" = 3 Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:07:54.669119', "updated_at" = '2013-01-04 22:07:54.669119' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:07:54.692515', "updated_at" = '2013-01-04 22:07:54.692515' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:07:54.711949', "updated_at" = '2013-01-04 22:07:54.711949' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:07:54.720875', "updated_at" = '2013-01-04 22:07:54.720875' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-04 22:07:54.755736', "updated_at" = '2013-01-04 22:07:54.755736' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["value", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Fri, 04 Jan 2013 22:07:54 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction Connecting to database specified by database.yml NoteType Load (2.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.5ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to BaseErpServices (20130105135833)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal(8,3), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.1ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.1ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.1ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.1ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.1ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.1ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.1ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)  (0.1ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.1ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.1ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" decimal(8,2), "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.2ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.1ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.1ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.1ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.1ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.1ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.1ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.1ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.1ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)   (0.1ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.1ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.1ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.1ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.1ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.1ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.1ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135833')  (2.5ms) commit transaction Migrating to BaseTechServices (20130105135834)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.1ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "security_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.1ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.1ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "width" varchar(255), "height" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.1ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "capability_type_id" integer, "capability_resource_type" varchar(255), "capability_resource_id" integer, "scope_type_id" integer, "scope_query" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE INDEX "index_capabilities_on_scope_type_id" ON "capabilities" ("scope_type_id")  (0.1ms) CREATE INDEX "capability_resource_index" ON "capabilities" ("capability_resource_id", "capability_resource_type")  (0.1ms) CREATE TABLE "capability_accessors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capability_accessor_record_type" varchar(255), "capability_accessor_record_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capability_accessors_on_capability_id" ON "capability_accessors" ("capability_id")  (0.1ms) CREATE INDEX "capability_accessor_record_index" ON "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type")  (0.1ms) CREATE TABLE "scope_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_scope_types_on_internal_identifier" ON "scope_types" ("internal_identifier")  (0.1ms) CREATE TABLE "parties_security_roles" ("party_id" integer, "security_role_id" integer)  (0.1ms) CREATE INDEX "index_parties_security_roles_on_party_id" ON "parties_security_roles" ("party_id")  (0.1ms) CREATE INDEX "index_parties_security_roles_on_security_role_id" ON "parties_security_roles" ("security_role_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135834')  (1.1ms) commit transaction Migrating to CreateHasAttributeTables (20130105135835)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.1ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.1ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.1ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135835')  (0.7ms) commit transaction Migrating to CreateGroups (20130105135836)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135836')  (0.6ms) commit transaction Migrating to UpgradeSecurity (20130105135837)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135837')  (0.6ms) commit transaction Migrating to UpgradeSecurity2 (20130105135838)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135838')  (0.6ms) commit transaction Migrating to BaseAppFramework (20130105135839)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.1ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.1ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.1ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.1ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))   (0.1ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.1ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.1ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.1ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.1ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.1ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)   (0.1ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.1ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.2ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.2ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "is_template" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configurations_on_is_template" ON "configurations" ("is_template")  (0.1ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.1ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.2ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)  (0.1ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.3ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.1ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.1ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.2ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.1ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.1ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.1ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.1ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135839')  (1.3ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml NoteType Load (2.2ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.7ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.1ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110109173616'  (0.0ms) begin transaction CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'download') LIMIT 1 SQL (6.0ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'instance') LIMIT 1 SQL (0.3ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["description", "Instance"], ["internal_identifier", "instance"], ["updated_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'class') LIMIT 1 SQL (0.1ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["description", "Class"], ["internal_identifier", "class"], ["updated_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'query') LIMIT 1 SQL (0.1ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["description", "Query"], ["internal_identifier", "query"], ["updated_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00]]  (1.1ms) commit transaction  (1.0ms) insert into data_migrations (version) values ('20110109173616')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00]]  (0.7ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110525001935')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.0ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" SQL (0.3ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:48 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.2ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110609150135')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.0ms) begin transaction ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles"  SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.1ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["value", "yes"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Planet"], ["internal_identifier", "planet_desktop_background"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.3ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-01-05 13:58:49.255804' WHERE "preference_types"."id" = 3  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-01-05 13:58:49.258646' WHERE "preference_types"."id" = 4  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2013-01-05 13:58:49.261170' WHERE "preference_types"."id" = 1  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2013-01-05 13:58:49.262966' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "note_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('shared_notesgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["xtype", "shared_notesgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('shared_notesgrid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('application_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('application_management') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('role_management') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('role_management') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') AND "widgets"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 1], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 3)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 4)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (1, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 1) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."id" != 1 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["xtype", "contactmechanismgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('partygrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["xtype", "partygrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('partygrid') AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') AND "widgets"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 5)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 6)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 3 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["weight", nil]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2013-01-05 13:58:49.496946', "updated_at" = '2013-01-05 13:58:49.496946' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.3ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2013-01-05 13:58:49.577154', "updated_at" = '2013-01-05 13:58:49.577154' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.1ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('admin@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin') LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["username", "admin"]] SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:49.734564' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:49.741228' WHERE "user_preferences"."id" = 2  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-05 13:58:49.742361' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:49.765841' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-05 13:58:49.767040' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-01-05 13:58:49.783295' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'gvwqx8sPVYY571mkb8Gq', "crypted_password" = '$2a$10$Z0PoVGpj..asyt8fr/J0F.JXJPnhCIBx4t2rdKXXX5hNJHTMUdvQG', "updated_at" = '2013-01-05 13:58:49.911562' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 1  (0.1ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (1, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('truenorth@gmail.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('truenorth') LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:49.938500' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:49.944054' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-05 13:58:49.944924' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:49.952297' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-05 13:58:49.953152' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Sat, 05 Jan 2013 13:58:49 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-01-05 13:58:49.955682' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 2, "salt" = 'XxcWxqa3pTgXGvNF6DS8', "crypted_password" = '$2a$10$mwYS1iQH9Yfyiu31wfsgCe/9bEuSElqXECSpK4w/gMjOUz8swLMtO', "updated_at" = '2013-01-05 13:58:50.078026' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2013-01-05 13:58:50.079381' WHERE "users"."id" = 2 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 2  (0.0ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (2, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 3) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 1) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 3) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (2.6ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20110728201729')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201733'  (0.0ms) begin transaction PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'truenorth_logo_background' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'truenorth_tech.png', "updated_at" = '2013-01-05 13:58:50.111166' WHERE "preference_options"."id" = 3 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'grey_gradient_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 5  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 5 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.1ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 5]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'purple_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 6  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 6 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 6]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'planet_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 7  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 7 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 7]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'portablemind_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 8  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 8 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 8]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'access_extjs_theme' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-access', "updated_at" = '2013-01-05 13:58:50.123288' WHERE "preference_options"."id" = 9 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'gray_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-gray', "updated_at" = '2013-01-05 13:58:50.124908' WHERE "preference_options"."id" = 10 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'blue_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all', "updated_at" = '2013-01-05 13:58:50.126199' WHERE "preference_options"."id" = 11 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Clifton Default"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["value", "clifton:clifton"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Clifton Green"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["value", "clifton:clifton-green"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Clifton Yellow"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["value", "clifton:clifton-yellow"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Clifton Pink"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["value", "clifton:clifton-pink"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Clifton Blue"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["value", "clifton:clifton-blue"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE "preference_types"."internal_identifier" = 'extjs_theme' LIMIT 1  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 12)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 13)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 14)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 15)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 16) AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Application') ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 1 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 2 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 4 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 5 and preferenced_record_type = 'AppContainer') LIMIT 1  (1.3ms) commit transaction  (1.0ms) insert into data_migrations (version) values ('20110728201733')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.0ms) begin transaction SQL (0.5ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Sun, 06 Jan 2013 07:00:01 UTC +00:00], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]]  (0.7ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110802200222')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110816161238'  (0.0ms) begin transaction Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Audit Log Viewer"], ["icon", "icon-history"], ["internal_identifier", "audit_log_viewer"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.AuditLogViewer"], ["shortcut_id", "audit_log_viewer-win"], ["type", "DesktopApplication"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 4], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 4], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' AND "applications"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."id" != 4 AND "applications"."type" = 'DesktopApplication') LIMIT 1  (0.6ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110816161238')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.0ms) begin transaction DesktopApplication Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 5) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 5) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1  (0.7ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110817160743')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.0ms) begin transaction SQL (0.4ms) INSERT INTO "compass_ae_instances" ("created_at", "updated_at", "version") VALUES (?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["version", #]]  (0.7ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110913145838')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.0ms) begin transaction SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'employee' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 SQL (0.3ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'User' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.3ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "User"], ["capability_type_id", 2], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.3ms) UPDATE "capabilities" SET "capability_resource_type" = 'User', "capability_type_id" = 2, "scope_type_id" = 2, "created_at" = '2013-01-05 13:58:50.292033', "updated_at" = '2013-01-05 13:58:50.292033', "description" = 'Create User' WHERE "capabilities"."id" = 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 1 LIMIT 1 SQL (0.4ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 1], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'User' AND "capabilities"."capability_type_id" = 3 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "User"], ["capability_type_id", 3], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 3 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.1ms) UPDATE "capabilities" SET "capability_resource_type" = 'User', "capability_type_id" = 3, "scope_type_id" = 2, "created_at" = '2013-01-05 13:58:50.323137', "updated_at" = '2013-01-05 13:58:50.323137', "description" = 'Delete User' WHERE "capabilities"."id" = 2 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 2], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "Note"], ["capability_type_id", 2], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.1ms) UPDATE "capabilities" SET "capability_resource_type" = 'Note', "capability_type_id" = 2, "scope_type_id" = 2, "created_at" = '2013-01-05 13:58:50.330949', "updated_at" = '2013-01-05 13:58:50.330949', "description" = 'Create Note' WHERE "capabilities"."id" = 3 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 3], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 2 AND "capability_accessors"."capability_id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 2], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 3], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 2]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 SQL (0.2ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 4 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "Note"], ["capability_type_id", 4], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 4 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.1ms) UPDATE "capabilities" SET "capability_resource_type" = 'Note', "capability_type_id" = 4, "scope_type_id" = 2, "created_at" = '2013-01-05 13:58:50.344690', "updated_at" = '2013-01-05 13:58:50.344690', "description" = 'View Note' WHERE "capabilities"."id" = 4 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 4 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 4], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 4 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 2 AND "capability_accessors"."capability_id" = 4 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 2], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 4], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 2]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 3 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "Note"], ["capability_type_id", 3], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 3 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.1ms) UPDATE "capabilities" SET "capability_resource_type" = 'Note', "capability_type_id" = 3, "scope_type_id" = 2, "created_at" = '2013-01-05 13:58:50.356015', "updated_at" = '2013-01-05 13:58:50.356015', "description" = 'Delete Note' WHERE "capabilities"."id" = 5 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 5 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 5], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]]  (1.0ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20111108183739')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.0ms) begin transaction OrganizerApplication Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "applications_widgets" ON "applications"."id" = "applications_widgets"."application_id" WHERE "applications_widgets"."widget_id" = 5  (0.2ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 5 AND "applications_widgets"."application_id" IN (3) SQL (0.1ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 5]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('phonenumbergrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('phone_number_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["xtype", "phonenumbergrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('emailaddressgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('email_address_management') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["xtype", "emailaddressgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('postaladdressgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('postal_address_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["xtype", "postaladdressgrid"]]  (42.7ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 7)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 8)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 9) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 3 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (1.2ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20111108183740')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.0ms) begin transaction AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.3ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 3 AND "audit_log_types"."lft" < 4) AND ("audit_log_types".id != 2) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.1ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 5 AND "audit_log_types"."lft" < 6) AND ("audit_log_types".id != 3) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.1ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 7 AND "audit_log_types"."lft" < 8) AND ("audit_log_types".id != 4) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.1ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 9 AND "audit_log_types"."lft" < 10) AND ("audit_log_types".id != 5) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.1ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 11 AND "audit_log_types"."lft" < 12) AND ("audit_log_types".id != 6) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (0.8ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20111111144706')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.0ms) begin transaction Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('userinfo') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('userinfo') LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["xtype", "userinfo"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (3, 10) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" IS NULL AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 3 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (0.8ms) commit transaction  (0.6ms) insert into data_migrations (version) values ('20120229160222')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20120405193721')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.0ms) begin transaction Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."type" = 'MobileApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" IS NULL LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."type" = 'MobileApplication') LIMIT 1  (0.0ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20120411180756')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120418164215'  (0.0ms) begin transaction Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.ConfigurationManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('configuration_management') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Configuration Management"], ["icon", "icon-grid"], ["internal_identifier", "configuration_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.ConfigurationManagement"], ["shortcut_id", "configuration_management-win"], ["type", "DesktopApplication"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 4 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 4 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]]  (0.7ms) commit transaction  (0.6ms) insert into data_migrations (version) values ('20120418164215')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20121116155018'  (0.0ms) begin transaction RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Security Group"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "group"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Security Group Member"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "group_member"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.4ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Security Group Membership"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "group_membership"], ["lft", 1], ["name", "Group Membership"], ["parent_id", nil], ["rgt", 2], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["valid_from_role_type_id", 2], ["valid_to_role_type_id", 1]]  (1.2ms) commit transaction  (1.0ms) insert into data_migrations (version) values ('20121116155018')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20121130201859'  (0.0ms) begin transaction Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."xtype" = 'systemmanagement_applicationrolemanagment' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'system_management' LIMIT 1  (0.0ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20121130201859')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20121130212146'  (0.0ms) begin transaction SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."description" = 'Admin' AND "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."description" = 'Employee' AND "security_roles"."internal_identifier" = 'employee' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 3 LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 3 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 5 LIMIT 1 SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'edit' LIMIT 1 SQL (0.3ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Edit"], ["internal_identifier", "edit"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 5 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "Note"], ["capability_type_id", 5], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 5 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.2ms) UPDATE "capabilities" SET "capability_resource_type" = 'Note', "capability_type_id" = 5, "scope_type_id" = 2, "created_at" = '2013-01-05 13:58:50.676380', "updated_at" = '2013-01-05 13:58:50.676380', "description" = 'Edit Note' WHERE "capabilities"."id" = 6 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 6 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 6], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 4 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 4 LIMIT 1 SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 2 AND "capability_accessors"."capability_id" = 3 LIMIT 1 SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 2]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 3 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 2 AND "capability_accessors"."capability_id" = 5 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 2], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 5], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 2]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'edit' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 5 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 2 AND "capability_accessors"."capability_id" = 6 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 2], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 6], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 2]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 4 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 2 AND "capability_accessors"."capability_id" = 4 LIMIT 1 SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 2]]  (0.9ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20121130212146')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20121218175028'  (0.0ms) begin transaction Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.SecurityManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('security_management') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00], ["description", "Security Management"], ["icon", "icon-key"], ["internal_identifier", "security_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.SecurityManagement"], ["shortcut_id", "security_management-win"], ["type", "DesktopApplication"], ["updated_at", Sat, 05 Jan 2013 13:58:50 UTC +00:00]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 3 AND (valid_preference_types.preferenced_record_type = 'Application') ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 4 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 3 AND (preferenced_record_id = 7 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 7], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 4 AND (valid_preference_types.preferenced_record_type = 'Application') ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 1 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 2 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 4 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 5 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 6 and preferenced_record_type = 'Application') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 4 AND (preferenced_record_id = 7 and preferenced_record_type = 'Application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 7], ["preferenced_record_type", "Application"]]  (0.8ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20121218175028')  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (31.3ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.3ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-05 13:58:51.144659', "updated_at" = '2013-01-05 13:58:51.144659' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["value", "portablemind.png"]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user1@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin1') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["crypted_password", "$2a$10$KOMD46r.TB9e8HV7uH1tJejnD2ZgLJ9M7h4CcXr8pDR4eYz./i1CS"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["username", "admin1"]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (3.2ms) Sent mail to user1@portablemind.com (50ms) Date: Sat, 05 Jan 2013 08:58:51 -0500 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <50e8319b7439b_9c513fce55035ad01601a@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:51.568270' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:51.573498' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-05 13:58:51.574366' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:51.591391' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-05 13:58:51.592290' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-05 13:58:51.603737' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-05 13:58:51.637128' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.2ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) Rendered inline template (0.2ms) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-05 13:58:51.659344' WHERE "users"."id" = 3 Completed 200 OK in 15ms (Views: 1.2ms | ActiveRecord: 0.8ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-05 13:58:51.663920', "updated_at" = '2013-01-05 13:58:51.663920' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user2@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin2') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["crypted_password", "$2a$10$8g1Iay3t5s/7tjPZBGkvtOlrx8k9W3JgYH8aQmMiMhOpqaKkkJ2Ni"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["username", "admin2"]] Sent mail to user2@portablemind.com (7ms) Date: Sat, 05 Jan 2013 08:58:51 -0500 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <50e8319bb7277_9c513fce55035ad01617d@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:51.762641' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:51.767046' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-05 13:58:51.767719' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:51.773408' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-05 13:58:51.774088' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-05 13:58:51.776054' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-05 13:58:51.777233' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 404 Not Found in 0ms  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-05 13:58:51.785931', "updated_at" = '2013-01-05 13:58:51.785931' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user3@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin3') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["crypted_password", "$2a$10$RYYIEznyV6n0ot0TnzOaVuo4ahyRCODBAToUAtloENOVnOlFlEy0y"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["username", "admin3"]] Sent mail to user3@portablemind.com (7ms) Date: Sat, 05 Jan 2013 08:58:51 -0500 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <50e8319bd528b_9c513fce55035ad016254@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:51.886999' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:51.892643' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-05 13:58:51.893447' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:51.901383' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-05 13:58:51.902339' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-05 13:58:51.904421' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-05 13:58:51.905656' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.0ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.1ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-05 13:58:51.909672' WHERE "users"."id" = 3 Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.3ms)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-05 13:58:51.951450', "updated_at" = '2013-01-05 13:58:51.951450' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Sat, 05 Jan 2013 13:58:51 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user4@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin4') LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["crypted_password", "$2a$10$kCXcHprII4e8ekkQcnNSu.guuxlarodjeyP6NdjdYHjqxQMeOxWx."], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["username", "admin4"]] Sent mail to user4@portablemind.com (7ms) Date: Sat, 05 Jan 2013 08:58:52 -0500 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <50e8319c971c_9c513fce55035ad01639@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/.

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:52.051323' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:52.055701' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-05 13:58:52.056387' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-01-05 13:58:52.062227' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-05 13:58:52.062914' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-01-05 13:58:52.064893' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-01-05 13:58:52.066103' WHERE "users"."id" = 3  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.3ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 5], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 6], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["valid_from_role_type_id", 9], ["valid_to_role_type_id", 10]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-01-05 13:58:52.136783' WHERE "users"."id" = 3 Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (1.8ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-05 13:58:52.212136', "updated_at" = '2013-01-05 13:58:52.212136' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 3], ["role_type_id_to", 4], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-05 13:58:52.234242', "updated_at" = '2013-01-05 13:58:52.234242' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 3], ["role_type_id_to", 4], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-05 13:58:52.254002', "updated_at" = '2013-01-05 13:58:52.254002' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-05 13:58:52.263312', "updated_at" = '2013-01-05 13:58:52.263312' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 3], ["role_type_id_to", 4], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 5], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 6], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 3], ["role_type_id_from", 9], ["role_type_id_to", 10], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-01-05 13:58:52.298303', "updated_at" = '2013-01-05 13:58:52.298303' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 3], ["role_type_id_to", 4], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("base_url", "created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["base_url", nil], ["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["value", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Sat, 05 Jan 2013 13:58:52 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction Connecting to database specified by database.yml NoteType Load (2.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (1.7ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to BaseErpServices (20130105135833)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal(8,3), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.1ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.1ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.1ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.1ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.1ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.1ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.1ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)  (0.1ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.1ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.1ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" decimal(8,2), "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.1ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.1ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.1ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.1ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.1ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.1ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.1ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.1ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.1ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)   (0.1ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.1ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.1ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.1ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.1ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.1ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.1ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135833')  (2.8ms) commit transaction Migrating to BaseTechServices (20130105135834)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.1ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "security_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.1ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.1ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "width" varchar(255), "height" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.1ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "capability_type_id" integer, "capability_resource_type" varchar(255), "capability_resource_id" integer, "scope_type_id" integer, "scope_query" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE INDEX "index_capabilities_on_scope_type_id" ON "capabilities" ("scope_type_id")  (0.1ms) CREATE INDEX "capability_resource_index" ON "capabilities" ("capability_resource_id", "capability_resource_type")  (0.1ms) CREATE TABLE "capability_accessors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capability_accessor_record_type" varchar(255), "capability_accessor_record_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capability_accessors_on_capability_id" ON "capability_accessors" ("capability_id")  (0.1ms) CREATE INDEX "capability_accessor_record_index" ON "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type")  (0.1ms) CREATE TABLE "scope_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_scope_types_on_internal_identifier" ON "scope_types" ("internal_identifier")  (0.1ms) CREATE TABLE "parties_security_roles" ("party_id" integer, "security_role_id" integer)  (0.1ms) CREATE INDEX "index_parties_security_roles_on_party_id" ON "parties_security_roles" ("party_id")  (0.4ms) CREATE INDEX "index_parties_security_roles_on_security_role_id" ON "parties_security_roles" ("security_role_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135834')  (1.7ms) commit transaction Migrating to CreateHasAttributeTables (20130105135835)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.1ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.1ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.1ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135835')  (1.0ms) commit transaction Migrating to CreateGroups (20130105135836)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135836')  (0.6ms) commit transaction Migrating to UpgradeSecurity (20130105135837)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135837')  (0.5ms) commit transaction Migrating to UpgradeSecurity2 (20130105135838)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135838')  (0.6ms) commit transaction Migrating to BaseAppFramework (20130105135839)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.1ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.1ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.1ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))   (0.1ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.1ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.1ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.1ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.1ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.1ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)   (0.1ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.1ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.1ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.1ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "is_template" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configurations_on_is_template" ON "configurations" ("is_template")  (0.1ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.1ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.1ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.2ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)  (0.1ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.3ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.1ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.1ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.1ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.1ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.1ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.1ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.1ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135839')  (2.2ms) commit transaction Migrating to AddTxnStatus (20130422153805)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "status_applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tracked_status_type_id" integer, "status_application_record_id" integer, "status_application_record_type" varchar(255), "from_date" datetime, "thru_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "status_applications_record_idx" ON "status_applications" ("status_application_record_id", "status_application_record_type")  (0.1ms) CREATE INDEX "tracked_status_type_id_idx" ON "status_applications" ("tracked_status_type_id")  (0.1ms) CREATE INDEX "from_date_idx" ON "status_applications" ("from_date")  (0.1ms) CREATE INDEX "thru_date_idx" ON "status_applications" ("thru_date")  (0.1ms) CREATE TABLE "tracked_status_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "tracked_status_types_iid_idx" ON "tracked_status_types" ("internal_identifier")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422153805')  (1.0ms) commit transaction Migrating to UpgradeCompassAeInstances (20130422153806)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "compass_ae_instance_party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "compass_ae_instance_id" integer, "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "compass_ae_instance_id_idx" ON "compass_ae_instance_party_roles" ("compass_ae_instance_id")  (0.1ms) CREATE INDEX "party_id_idx" ON "compass_ae_instance_party_roles" ("party_id")  (0.1ms) CREATE INDEX "role_type_id_idx" ON "compass_ae_instance_party_roles" ("role_type_id")  (0.2ms) ALTER TABLE "compass_ae_instances" ADD "description" varchar(255)  (0.2ms) ALTER TABLE "compass_ae_instances" ADD "internal_identifier" varchar(255)  (0.2ms) ALTER TABLE "compass_ae_instances" ADD "type" varchar(255)  (0.2ms) ALTER TABLE "compass_ae_instances" ADD "schema" varchar(255) DEFAULT 'public'  (0.2ms) ALTER TABLE "compass_ae_instances" ADD "parent_id" integer  (0.1ms) CREATE INDEX "iid_idx" ON "compass_ae_instances" ("internal_identifier")  (0.1ms) CREATE INDEX "schema_idx" ON "compass_ae_instances" ("schema")  (0.2ms) CREATE INDEX "type_idx" ON "compass_ae_instances" ("type")  (0.1ms) CREATE INDEX "parent_id_idx" ON "compass_ae_instances" ("parent_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422153806')  (1.0ms) commit transaction Migrating to AddUuidCompassAeInstance (20130422153807)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "compass_ae_instances" ADD "guid" varchar(255)  (0.1ms) CREATE INDEX "guid_idx" ON "compass_ae_instances" ("guid")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422153807')  (0.7ms) commit transaction Migrating to AddLongLatToAddress (20130422153808)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "postal_addresses" ADD "latitude" decimal(12,8)  (0.2ms) ALTER TABLE "postal_addresses" ADD "longitude" decimal(12,8)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422153808')  (0.8ms) commit transaction Migrating to AddQueueToDelayedJobs (20130422153809)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422153809')  (0.7ms) commit transaction Migrating to AddJobTracker (20130422153810)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "job_trackers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "job_name" varchar(255), "job_klass" varchar(255), "run_time" varchar(255), "last_run_at" datetime, "next_run_at" datetime)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422153810')  (0.9ms) commit transaction Migrating to UpdateMobileApplication (20130422153811)  (0.0ms) begin transaction  (0.3ms) CREATE TEMPORARY TABLE "altered_applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "xtype" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "applications"  (0.2ms) DROP TABLE "applications"  (0.1ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "xtype" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) SELECT * FROM "altered_applications"  (0.2ms) DROP TABLE "altered_applications" MobileApplication Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('MobileApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."type" = 'MobileApplication') LIMIT 1 SQL (1.6ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:19 UTC +00:00], ["description", "User Mgmt"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "MobileApplication"], ["updated_at", Mon, 22 Apr 2013 15:38:19 UTC +00:00], ["xtype", "compass-erpapp-mobile-usermanagement-application"]]  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422153811')  (1.1ms) commit transaction  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml NoteType Load (2.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (3.1ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (0.8ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.1ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110109173616'  (0.1ms) begin transaction CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'download') LIMIT 1 SQL (7.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'instance') LIMIT 1 SQL (0.3ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Instance"], ["internal_identifier", "instance"], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'class') LIMIT 1 SQL (0.1ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Class"], ["internal_identifier", "class"], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'query') LIMIT 1 SQL (0.1ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Query"], ["internal_identifier", "query"], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]]  (1.0ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20110109173616')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.0ms) begin transaction SQL (0.6ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]]  (0.9ms) commit transaction  (0.5ms) insert into data_migrations (version) values ('20110525001935')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.0ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] SQL (0.2ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] SQL (0.2ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.4ms) commit transaction  (1.1ms) insert into data_migrations (version) values ('20110609150135')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.1ms) begin transaction ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Mon, 22 Apr 2013 15:38:26 UTC +00:00]] SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles"  SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]] SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.2ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["value", "yes"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["value", "truenorth.png"]] SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Planet"], ["internal_identifier", "planet_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.3ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-04-22 15:38:27.147740' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-04-22 15:38:27.150758' WHERE "preference_types"."id" = 4  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2013-04-22 15:38:27.153378' WHERE "preference_types"."id" = 1  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2013-04-22 15:38:27.155136' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "note_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('shared_notesgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["xtype", "shared_notesgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('shared_notesgrid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('application_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('application_management') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('role_management') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('role_management') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') AND "widgets"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["xtype", nil]] SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 3)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 4)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["xtype", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["xtype", "contactmechanismgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('partygrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["xtype", "partygrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('partygrid') AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') AND "widgets"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["xtype", nil]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 5)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["weight", nil]] SQL (0.4ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2013-04-22 15:38:27.387038', "updated_at" = '2013-04-22 15:38:27.387038' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.3ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2013-04-22 15:38:27.470561', "updated_at" = '2013-04-22 15:38:27.470561' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.1ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('admin@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin@portablemind.com' AND (id != NULL) LIMIT 1 SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["username", "admin"]] SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:27.591259' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (44.0ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:27.642590' WHERE "user_preferences"."id" = 2  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-04-22 15:38:27.643931' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:27.668701' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-04-22 15:38:27.669946' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-04-22 15:38:27.686695' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.2ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'tsZdsNpmzPJua9gzXryS', "crypted_password" = '$2a$10$VxhXoVpvogVZ6tJUPGrnGu.7Ffpu2qi7Y1gJf/TJEr4n44f/pxSDu', "updated_at" = '2013-04-22 15:38:27.813804' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin@portablemind.com' AND (id != 1) LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 1  (0.1ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (1, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin@portablemind.com' AND (id != 1) LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('truenorth@gmail.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('truenorth') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth@gmail.com' AND (id != NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["username", "truenorth"]] SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:27.846095' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:27.851820' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-04-22 15:38:27.852691' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:27.860262' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-04-22 15:38:27.861106' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Mon, 22 Apr 2013 15:38:27 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-04-22 15:38:27.863685' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth@gmail.com' AND (id != 2) LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 2, "salt" = 'DsqYo94ba2VGeSpqA4aP', "crypted_password" = '$2a$10$LFvVurHazSvjFU.JfNVnxuPjdVO5WZXzA8yP/yvbSdWlRJZh7GyZW', "updated_at" = '2013-04-22 15:38:27.985566' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2013-04-22 15:38:27.986711' WHERE "users"."id" = 2 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 2  (0.1ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (2, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth@gmail.com' AND (id != 2) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.4ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (3.3ms) commit transaction  (1.1ms) insert into data_migrations (version) values ('20110728201729')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201733'  (0.1ms) begin transaction PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'truenorth_logo_background' LIMIT 1  (0.4ms) UPDATE "preference_options" SET "value" = 'truenorth_tech.png', "updated_at" = '2013-04-22 15:38:28.021215' WHERE "preference_options"."id" = 3 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'grey_gradient_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 5  (0.2ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 5 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.1ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 5]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'purple_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 6  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 6 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 6]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'planet_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 7  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 7 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 7]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'portablemind_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 8  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 8 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 8]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'access_extjs_theme' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-access', "updated_at" = '2013-04-22 15:38:28.034100' WHERE "preference_options"."id" = 9 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'gray_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-gray', "updated_at" = '2013-04-22 15:38:28.035735' WHERE "preference_options"."id" = 10 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'blue_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all', "updated_at" = '2013-04-22 15:38:28.037060' WHERE "preference_options"."id" = 11 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Clifton Default"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["value", "clifton:clifton"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Clifton Green"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["value", "clifton:clifton-green"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Clifton Yellow"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["value", "clifton:clifton-yellow"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Clifton Pink"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["value", "clifton:clifton-pink"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Clifton Blue"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["value", "clifton:clifton-blue"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE "preference_types"."internal_identifier" = 'extjs_theme' LIMIT 1  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 12)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 13)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 14)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 15)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 16) AppContainer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Application') ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 1 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 2 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 4 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 5 and preferenced_record_type = 'AppContainer') LIMIT 1  (0.8ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20110728201733')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.0ms) begin transaction SQL (0.7ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Tue, 23 Apr 2013 07:00:01 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]]  (1.2ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110802200222')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110816161238'  (0.0ms) begin transaction Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Audit Log Viewer"], ["icon", "icon-history"], ["internal_identifier", "audit_log_viewer"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.AuditLogViewer"], ["shortcut_id", "audit_log_viewer-win"], ["type", "DesktopApplication"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["xtype", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1  (0.8ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110816161238')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.0ms) begin transaction DesktopApplication Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["xtype", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."id" != 6 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 6) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin@portablemind.com' AND (id != 1) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 6) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth@gmail.com' AND (id != 2) LIMIT 1  (0.9ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20110817160743')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.0ms) begin transaction CompassAeInstance Exists (0.1ms) SELECT 1 AS one FROM "compass_ae_instances" WHERE "compass_ae_instances"."internal_identifier" IS NULL LIMIT 1  (0.0ms) commit transaction  (1.0ms) insert into data_migrations (version) values ('20110913145838')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.0ms) begin transaction SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'employee' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 SQL (0.3ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'User' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "User"], ["capability_type_id", 2], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.3ms) UPDATE "capabilities" SET "capability_resource_type" = 'User', "capability_type_id" = 2, "scope_type_id" = 2, "created_at" = '2013-04-22 15:38:28.223272', "updated_at" = '2013-04-22 15:38:28.223272', "description" = 'Create User' WHERE "capabilities"."id" = 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 1 LIMIT 1 SQL (0.3ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 1], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'User' AND "capabilities"."capability_type_id" = 3 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "User"], ["capability_type_id", 3], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 3 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.1ms) UPDATE "capabilities" SET "capability_resource_type" = 'User', "capability_type_id" = 3, "scope_type_id" = 2, "created_at" = '2013-04-22 15:38:28.254495', "updated_at" = '2013-04-22 15:38:28.254495', "description" = 'Delete User' WHERE "capabilities"."id" = 2 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 2 LIMIT 1 SQL (0.1ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 2], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "Note"], ["capability_type_id", 2], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.1ms) UPDATE "capabilities" SET "capability_resource_type" = 'Note', "capability_type_id" = 2, "scope_type_id" = 2, "created_at" = '2013-04-22 15:38:28.262360', "updated_at" = '2013-04-22 15:38:28.262360', "description" = 'Create Note' WHERE "capabilities"."id" = 3 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 3], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 2 AND "capability_accessors"."capability_id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 2], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 3], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 2]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 4 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "Note"], ["capability_type_id", 4], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 4 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.3ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.1ms) UPDATE "capabilities" SET "capability_resource_type" = 'Note', "capability_type_id" = 4, "scope_type_id" = 2, "created_at" = '2013-04-22 15:38:28.275545', "updated_at" = '2013-04-22 15:38:28.275545', "description" = 'View Note' WHERE "capabilities"."id" = 4 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 4 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 4], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 4 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 2 AND "capability_accessors"."capability_id" = 4 LIMIT 1 SQL (0.1ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 2], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 4], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 2]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 3 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "Note"], ["capability_type_id", 3], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 3 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.1ms) UPDATE "capabilities" SET "capability_resource_type" = 'Note', "capability_type_id" = 3, "scope_type_id" = 2, "created_at" = '2013-04-22 15:38:28.287291', "updated_at" = '2013-04-22 15:38:28.287291', "description" = 'Delete Note' WHERE "capabilities"."id" = 5 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 5 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 5], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]]  (1.2ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20111108183739')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.0ms) begin transaction OrganizerApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "applications_widgets" ON "applications"."id" = "applications_widgets"."application_id" WHERE "applications_widgets"."widget_id" = 5  (0.2ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 5 AND "applications_widgets"."application_id" IN (4) SQL (0.1ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 5]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('phonenumbergrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('phone_number_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["xtype", "phonenumbergrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('emailaddressgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('email_address_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["xtype", "emailaddressgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('postaladdressgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('postal_address_management') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["xtype", "postaladdressgrid"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (0.8ms) commit transaction  (0.6ms) insert into data_migrations (version) values ('20111108183740')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.1ms) begin transaction AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types"  AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.3ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" WHERE (not ("lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END AND "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END AND "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END)) ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 3 AND "audit_log_types"."lft" < 4) AND ("audit_log_types".id != 2) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" WHERE (not ("lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END AND "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END AND "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END)) ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 5 AND "audit_log_types"."lft" < 6) AND ("audit_log_types".id != 3) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" WHERE (not ("lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END AND "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END AND "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END)) ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 7 AND "audit_log_types"."lft" < 8) AND ("audit_log_types".id != 4) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" WHERE (not ("lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END AND "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END AND "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END)) ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 9 AND "audit_log_types"."lft" < 10) AND ("audit_log_types".id != 5) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.2ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" WHERE (not ("lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END AND "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END AND "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END)) ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 11 AND "audit_log_types"."lft" < 12) AND ("audit_log_types".id != 6) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (2.2ms) commit transaction  (1.0ms) insert into data_migrations (version) values ('20111111144706')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.0ms) begin transaction Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('userinfo') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('userinfo') LIMIT 1 SQL (0.4ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["xtype", "userinfo"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (0.9ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20120229160222')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.6ms) insert into data_migrations (version) values ('20120405193721')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 SQL (5.9ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:38:28.910968', "updated_at" = '2013-04-22 15:38:28.910968' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:38:28 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user1@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin1') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1@portablemind.com' AND (id != NULL) LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["crypted_password", "$2a$10$emum.xrSQ44JqRQAX1ivXutpwyjsDNxzf/sRmgqwKylrTL8Xlj1AK"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["username", "admin1"]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (32.6ms) Sent mail to user1@portablemind.com (16ms) Date: Mon, 22 Apr 2013 11:38:29 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <517559753540b_bffc3ff22d435ad05988c@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:29.311623' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:29.317167' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:38:29.318084' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:29.335481' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:38:29.336415' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:38:29.347994' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-04-22 15:38:29.349564' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.1ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) Rendered inline template (0.2ms) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-04-22 15:38:29.371927' WHERE "users"."id" = 3 Completed 200 OK in 15ms (Views: 1.1ms | ActiveRecord: 0.7ms)  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:38:29.376930', "updated_at" = '2013-04-22 15:38:29.376930' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user2@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin2') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2@portablemind.com' AND (id != NULL) LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["crypted_password", "$2a$10$atC0UirHsdjGeaPW0bLcA.eiHf6OguxXABmpqgzVUi1eNDR0WmI8O"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["username", "admin2"]] Sent mail to user2@portablemind.com (7ms) Date: Mon, 22 Apr 2013 11:38:29 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <5175597571726_bffc3ff22d435ad0599ac@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:29.477180' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:29.481805' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:38:29.482557' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:29.488571' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:38:29.489279' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:38:29.491335' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-04-22 15:38:29.492643' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 404 Not Found in 0ms  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:38:29.535556', "updated_at" = '2013-04-22 15:38:29.535556' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user3@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin3') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user3@portablemind.com' AND (id != NULL) LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["crypted_password", "$2a$10$odf152qFw130uS//q24bwu4htV5uZi0uz3uVuQulJQfOFejXqPL2q"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["username", "admin3"]] Sent mail to user3@portablemind.com (7ms) Date: Mon, 22 Apr 2013 11:38:29 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <5175597598707_bffc3ff22d435ad06004f@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:29.637102' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:29.641602' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:38:29.642313' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:29.648169' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:38:29.648884' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:38:29.650904' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-04-22 15:38:29.652140' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.0ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.1ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-04-22 15:38:29.656052' WHERE "users"."id" = 3 Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.2ms)  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:38:29.666119', "updated_at" = '2013-04-22 15:38:29.666119' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user4@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin4') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user4@portablemind.com' AND (id != NULL) LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["crypted_password", "$2a$10$zNcDBidxkcorUgcS1d6Zs.TOOf/V/ns7fO4v2/4hAdf37UzEzQRti"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["username", "admin4"]] Sent mail to user4@portablemind.com (7ms) Date: Mon, 22 Apr 2013 11:38:29 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <51755975b8290_bffc3ff22d435ad06012b@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:29.766794' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:29.771265' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:38:29.771952' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:38:29.777801' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:38:29.778518' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:38:29.780532' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-04-22 15:38:29.781744' WHERE "users"."id" = 3  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.2ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-04-22 15:38:29.870373' WHERE "users"."id" = 3 Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (2.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["xtype", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["xtype", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:38:29.913996', "updated_at" = '2013-04-22 15:38:29.913996' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:38:29.937434', "updated_at" = '2013-04-22 15:38:29.937434' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:38:29.957313', "updated_at" = '2013-04-22 15:38:29.957313' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:38:29.966722', "updated_at" = '2013-04-22 15:38:29.966722' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Mon, 22 Apr 2013 15:38:29 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:38:30.003801', "updated_at" = '2013-04-22 15:38:30.003801' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["xtype", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["value", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:38:30 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction Connecting to database specified by database.yml NoteType Load (1.7ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) select sqlite_version(*)  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (2.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to BaseErpServices (20130105135833)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "compass_ae_instances" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version" decimal(8,3), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "parties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "business_party_id" integer, "business_party_type" varchar(255), "list_view_image_id" integer, "enterprise_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "besi_1" ON "parties" ("business_party_id", "business_party_type")  (0.1ms) CREATE TABLE "party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar(255), "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_party_roles_on_party_id" ON "party_roles" ("party_id")  (0.1ms) CREATE INDEX "index_party_roles_on_role_type_id" ON "party_roles" ("role_type_id")  (0.1ms) CREATE TABLE "role_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "relationship_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "valid_from_role_type_id" integer, "valid_to_role_type_id" integer, "name" varchar(255), "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_relationship_types_on_valid_from_role_type_id" ON "relationship_types" ("valid_from_role_type_id")  (0.1ms) CREATE INDEX "index_relationship_types_on_valid_to_role_type_id" ON "relationship_types" ("valid_to_role_type_id")  (0.1ms) CREATE TABLE "party_relationships" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "party_id_from" integer, "party_id_to" integer, "role_type_id_from" integer, "role_type_id_to" integer, "status_type_id" integer, "priority_type_id" integer, "relationship_type_id" integer, "from_date" date, "thru_date" date, "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_party_relationships_on_status_type_id" ON "party_relationships" ("status_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_priority_type_id" ON "party_relationships" ("priority_type_id")  (0.1ms) CREATE INDEX "index_party_relationships_on_relationship_type_id" ON "party_relationships" ("relationship_type_id")  (0.1ms) CREATE TABLE "organizations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "tax_id_number" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "individuals" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "current_last_name" varchar(255), "current_first_name" varchar(255), "current_middle_name" varchar(255), "current_personal_title" varchar(255), "current_suffix" varchar(255), "current_nickname" varchar(255), "gender" varchar(1), "birth_date" date, "height" decimal(5,2), "weight" integer, "mothers_maiden_name" varchar(255), "marital_status" varchar(1), "social_security_number" varchar(255), "current_passport_number" integer, "current_passport_expire_date" date, "total_years_work_experience" integer, "comments" varchar(255), "encrypted_ssn" varchar(255), "temp_ssn" varchar(255), "salt" varchar(255), "ssn_last_four" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_individuals_on_party_id" ON "individuals" ("party_id")  (0.1ms) CREATE TABLE "contacts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "contact_mechanism_id" integer, "contact_mechanism_type" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_contacts_on_party_id" ON "contacts" ("party_id")  (0.1ms) CREATE INDEX "besi_2" ON "contacts" ("contact_mechanism_id", "contact_mechanism_type")  (0.1ms) CREATE TABLE "contact_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_types_on_parent_id" ON "contact_types" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_contact_purposes_on_parent_id" ON "contact_purposes" ("parent_id")  (0.1ms) CREATE TABLE "contact_purposes_contacts" ("contact_id" integer, "contact_purpose_id" integer)  (0.1ms) CREATE INDEX "contact_purposes_contacts_index" ON "contact_purposes_contacts" ("contact_id", "contact_purpose_id")  (0.1ms) CREATE TABLE "postal_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "address_line_1" varchar(255), "address_line_2" varchar(255), "city" varchar(255), "state" varchar(255), "zip" varchar(255), "country" varchar(255), "description" varchar(255), "geo_country_id" integer, "geo_zone_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_country_id" ON "postal_addresses" ("geo_country_id")  (0.1ms) CREATE INDEX "index_postal_addresses_on_geo_zone_id" ON "postal_addresses" ("geo_zone_id")  (0.1ms) CREATE TABLE "email_addresses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email_address" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "phone_numbers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "phone_number" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE TABLE "party_search_facts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "party_id" integer, "eid" varchar(255), "type" varchar(255), "roles" text, "party_description" varchar(255), "party_business_party_type" varchar(255), "user_login" varchar(255), "individual_current_last_name" varchar(255), "individual_current_first_name" varchar(255), "individual_current_middle_name" varchar(255), "individual_birth_date" varchar(255), "individual_ssn" varchar(255), "party_phone_number" varchar(255), "party_email_address" varchar(255), "party_address_1" varchar(255), "party_address_2" varchar(255), "party_primary_address_city" varchar(255), "party_primary_address_state" varchar(255), "party_primary_address_zip" varchar(255), "party_primary_address_country" varchar(255), "user_enabled" boolean, "user_type" varchar(255), "reindex" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "money" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "amount" decimal(8,2), "currency_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_money_on_currency_id" ON "money" ("currency_id")  (0.1ms) CREATE TABLE "currencies" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "definition" varchar(255), "internal_identifier" varchar(255), "numeric_code" varchar(255), "major_unit_symbol" varchar(255), "minor_unit_symbol" varchar(255), "ratio_of_minor_unit_to_major_unit" varchar(255), "postfix_label" varchar(255), "introduction_date" datetime, "expiration_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_currencies_on_internal_identifier" ON "currencies" ("internal_identifier")  (0.1ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "external_identifier" varchar(255), "from_date" datetime, "to_date" datetime, "internal_identifier" varchar(255), "category_record_id" integer, "category_record_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "category_polymorphic" ON "categories" ("category_record_id", "category_record_type")  (0.1ms) CREATE TABLE "category_classifications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "classification_type" varchar(255), "classification_id" integer, "from_date" datetime, "to_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "classification_polymorphic" ON "category_classifications" ("classification_id", "classification_type")  (0.1ms) CREATE TABLE "descriptive_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "view_type_id" integer, "internal_identifier" varchar(255), "description" text, "external_identifier" varchar(255), "external_id_source" varchar(255), "described_record_id" integer, "described_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_descriptive_assets_on_view_type_id" ON "descriptive_assets" ("view_type_id")  (0.1ms) CREATE INDEX "described_record_idx" ON "descriptive_assets" ("described_record_id", "described_record_type")  (0.1ms) CREATE TABLE "view_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "geo_countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "iso_code_2" varchar(255), "iso_code_3" varchar(255), "display" boolean DEFAULT 't', "external_id" integer, "created_at" datetime)  (0.1ms) CREATE INDEX "index_geo_countries_on_name" ON "geo_countries" ("name")  (0.1ms) CREATE INDEX "index_geo_countries_on_iso_code_2" ON "geo_countries" ("iso_code_2")  (0.1ms) CREATE TABLE "geo_zones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "geo_country_id" integer, "zone_code" varchar(255) DEFAULT 2, "zone_name" varchar(255), "created_at" datetime)   (0.1ms) CREATE INDEX "index_geo_zones_on_geo_country_id" ON "geo_zones" ("geo_country_id")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_name" ON "geo_zones" ("zone_name")  (0.1ms) CREATE INDEX "index_geo_zones_on_zone_code" ON "geo_zones" ("zone_code")  (0.1ms) CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_by_id" integer, "content" text, "noted_record_id" integer, "noted_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_notes_on_noted_record_id_and_noted_record_type" ON "notes" ("noted_record_id", "noted_record_type")  (0.1ms) CREATE INDEX "index_notes_on_note_type_id" ON "notes" ("note_type_id")  (0.1ms) CREATE INDEX "index_notes_on_created_by_id" ON "notes" ("created_by_id")  (0.1ms) CREATE TABLE "note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "note_type_record_id" integer, "note_type_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "note_type_record_idx" ON "note_types" ("note_type_record_id", "note_type_record_type")  (0.1ms) CREATE TABLE "valid_note_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "valid_note_type_record_id" integer, "valid_note_type_record_type" varchar(255), "note_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "valid_note_type_record_idx" ON "valid_note_types" ("valid_note_type_record_id", "valid_note_type_record_type")  (0.1ms) CREATE INDEX "index_valid_note_types_on_note_type_id" ON "valid_note_types" ("note_type_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135833')  (3.0ms) commit transaction Migrating to BaseTechServices (20130105135834)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "email" varchar(255), "party_id" integer, "type" varchar(255), "salt" varchar(255), "crypted_password" varchar(255), "last_login_at" datetime, "last_logout_at" datetime, "last_activity_at" datetime, "failed_logins_count" integer DEFAULT 0, "lock_expires_at" datetime, "remember_me_token" varchar(255), "remember_me_token_expires_at" datetime, "reset_password_token" varchar(255), "reset_password_token_expires_at" datetime, "reset_password_email_sent_at" datetime, "activation_state" varchar(255), "activation_token" varchar(255), "activation_token_expires_at" datetime, "security_question_1" varchar(255), "security_answer_1" varchar(255), "security_question_2" varchar(255), "security_answer_2" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")  (0.1ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")  (0.1ms) CREATE INDEX "activity_idx" ON "users" ("last_logout_at", "last_activity_at")  (0.1ms) CREATE INDEX "index_users_on_remember_me_token" ON "users" ("remember_me_token")  (0.1ms) CREATE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")  (0.1ms) CREATE INDEX "index_users_on_activation_token" ON "users" ("activation_token")  (0.1ms) CREATE TABLE "groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "security_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "sessions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "session_id" varchar(255) NOT NULL, "data" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_sessions_on_session_id" ON "sessions" ("session_id")  (0.1ms) CREATE INDEX "index_sessions_on_updated_at" ON "sessions" ("updated_at")  (0.1ms) CREATE TABLE "audit_logs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "application" varchar(255), "description" varchar(255), "party_id" integer, "additional_info" text, "audit_log_type_id" integer, "event_record_id" integer, "event_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_audit_logs_on_party_id" ON "audit_logs" ("party_id")  (0.1ms) CREATE INDEX "event_record_index" ON "audit_logs" ("event_record_id", "event_record_type")  (0.1ms) CREATE TABLE "audit_log_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "error_code" varchar(255), "comments" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "audit_log_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "audit_log_id" integer, "audit_log_item_type_id" integer, "audit_log_item_value" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "audit_log_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "external_identifier" varchar(255), "external_id_source" varchar(255), "description" varchar(255), "comments" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "file_assets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file_asset_holder_id" integer, "file_asset_holder_type" varchar(255), "type" varchar(255), "name" varchar(255), "directory" varchar(255), "data_file_name" varchar(255), "data_content_type" varchar(255), "data_file_size" integer, "data_updated_at" datetime, "width" varchar(255), "height" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_file_assets_on_type" ON "file_assets" ("type")  (0.1ms) CREATE INDEX "file_asset_holder_idx" ON "file_assets" ("file_asset_holder_id", "file_asset_holder_type")  (0.1ms) CREATE INDEX "index_file_assets_on_name" ON "file_assets" ("name")  (0.1ms) CREATE INDEX "index_file_assets_on_directory" ON "file_assets" ("directory")  (0.1ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")  (0.1ms) CREATE TABLE "capable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capable_model_record_id" integer, "capable_model_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "capable_model_record_idx" ON "capable_models" ("capable_model_record_id", "capable_model_record_type")  (0.2ms) CREATE TABLE "capability_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "capabilities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "capability_type_id" integer, "capability_resource_type" varchar(255), "capability_resource_id" integer, "scope_type_id" integer, "scope_query" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capabilities_on_capability_type_id" ON "capabilities" ("capability_type_id")  (0.1ms) CREATE INDEX "index_capabilities_on_scope_type_id" ON "capabilities" ("scope_type_id")  (0.1ms) CREATE INDEX "capability_resource_index" ON "capabilities" ("capability_resource_id", "capability_resource_type")  (0.1ms) CREATE TABLE "capability_accessors" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "capability_accessor_record_type" varchar(255), "capability_accessor_record_id" integer, "capability_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_capability_accessors_on_capability_id" ON "capability_accessors" ("capability_id")  (0.1ms) CREATE INDEX "capability_accessor_record_index" ON "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type")  (0.1ms) CREATE TABLE "scope_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_scope_types_on_internal_identifier" ON "scope_types" ("internal_identifier")  (0.1ms) CREATE TABLE "parties_security_roles" ("party_id" integer, "security_role_id" integer)  (0.1ms) CREATE INDEX "index_parties_security_roles_on_party_id" ON "parties_security_roles" ("party_id")  (0.1ms) CREATE INDEX "index_parties_security_roles_on_security_role_id" ON "parties_security_roles" ("security_role_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135834')  (1.5ms) commit transaction Migrating to CreateHasAttributeTables (20130105135835)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "attribute_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "internal_identifier" varchar(255), "description" varchar(255), "data_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX ":attribute_types_iid_idx" ON "attribute_types" ("internal_identifier")  (0.1ms) CREATE TABLE "attribute_values" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "attributed_record_id" integer, "attributed_record_type" varchar(255), "attribute_type_id" integer, "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE INDEX "attribute_values_attributed_record_idx" ON "attribute_values" ("attributed_record_id", "attributed_record_type")  (0.1ms) CREATE INDEX "attribute_values_attributed_type_idx" ON "attribute_values" ("attribute_type_id")  (0.1ms) CREATE INDEX "attribute_values_value_idx" ON "attribute_values" ("value")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135835')  (0.9ms) commit transaction Migrating to CreateGroups (20130105135836)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135836')  (0.8ms) commit transaction Migrating to UpgradeSecurity (20130105135837)  (0.1ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135837')  (0.8ms) commit transaction Migrating to UpgradeSecurity2 (20130105135838)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135838')  (0.8ms) commit transaction Migrating to BaseAppFramework (20130105135839)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_option_id" integer, "preference_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_preferences_on_preference_option_id" ON "preferences" ("preference_option_id")  (0.1ms) CREATE INDEX "index_preferences_on_preference_type_id" ON "preferences" ("preference_type_id")  (0.2ms) CREATE TABLE "preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "default_pref_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_preference_types_on_default_pref_option_id" ON "preference_types" ("default_pref_option_id")  (0.2ms) CREATE TABLE "preference_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "preference_options_preference_types" ("preference_type_id" integer, "preference_option_id" integer)  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_type_id_idx" ON "preference_options_preference_types" ("preference_type_id")  (0.1ms) CREATE INDEX "pref_opt_pref_type_pref_opt_id_idx" ON "preference_options_preference_types" ("preference_option_id")  (0.1ms) CREATE TABLE "valid_preference_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "preference_type_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255))   (0.2ms) CREATE TABLE "user_preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "preference_id" integer, "preferenced_record_id" integer, "preferenced_record_type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_user_preferences_on_user_id" ON "user_preferences" ("user_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preference_id" ON "user_preferences" ("preference_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_id" ON "user_preferences" ("preferenced_record_id")  (0.1ms) CREATE INDEX "index_user_preferences_on_preferenced_record_type" ON "user_preferences" ("preferenced_record_type")  (0.1ms) CREATE TABLE "app_containers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "description" varchar(255), "internal_identifier" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_app_containers_on_user_id" ON "app_containers" ("user_id")  (0.1ms) CREATE INDEX "index_app_containers_on_type" ON "app_containers" ("type")  (0.1ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "base_url" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "app_containers_applications" ("app_container_id" integer, "application_id" integer)   (0.1ms) CREATE INDEX "index_app_containers_applications_on_application_id" ON "app_containers_applications" ("application_id")  (0.1ms) CREATE INDEX "index_app_containers_applications_on_app_container_id" ON "app_containers_applications" ("app_container_id")  (0.1ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "icon" varchar(255), "xtype" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE TABLE "applications_widgets" ("application_id" integer, "widget_id" integer)   (0.1ms) CREATE INDEX "index_applications_widgets_on_application_id" ON "applications_widgets" ("application_id")  (0.1ms) CREATE INDEX "index_applications_widgets_on_widget_id" ON "applications_widgets" ("widget_id")  (0.1ms) CREATE TABLE "tree_menu_node_defs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "node_type" varchar(255), "parent_id" integer, "lft" integer, "rgt" integer, "menu_short_name" varchar(255), "menu_description" varchar(255), "text" varchar(255), "icon_url" varchar(255), "target_url" varchar(255), "resource_class" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_tree_menu_node_defs_on_parent_id" ON "tree_menu_node_defs" ("parent_id")  (0.1ms) CREATE TABLE "configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "active" boolean, "is_template" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configurations_on_is_template" ON "configurations" ("is_template")  (0.1ms) CREATE TABLE "valid_configurations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configured_item_id" integer, "configured_item_type" varchar(255), "configuration_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "configured_item_poly_idx" ON "valid_configurations" ("configured_item_id", "configured_item_type")  (0.1ms) CREATE INDEX "index_valid_configurations_on_configuration_id" ON "valid_configurations" ("configuration_id")  (0.1ms) CREATE TABLE "configuration_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_id" integer, "configuration_item_type_id" integer, "configuration_option_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_id" ON "configuration_items" ("configuration_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_item_type_id" ON "configuration_items" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "index_configuration_items_on_configuration_option_id" ON "configuration_items" ("configuration_option_id")  (0.1ms) CREATE TABLE "configuration_item_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "lft" integer, "rgt" integer, "description" varchar(255), "internal_identifier" varchar(255), "allow_user_defined_options" boolean DEFAULT 'f', "is_multi_optional" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE TABLE "configuration_item_types_configurations" ("configuration_item_type_id" integer, "configuration_id" integer)  (0.1ms) CREATE INDEX "conf_conf_type_id_item_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_id_idx" ON "configuration_item_types_configurations" ("configuration_id")  (0.3ms) CREATE UNIQUE INDEX "conf_config_type_uniq_idx" ON "configuration_item_types_configurations" ("configuration_item_type_id", "configuration_id")  (0.1ms) CREATE TABLE "configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "value" varchar(255), "comment" text, "user_defined" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_configuration_options_on_value" ON "configuration_options" ("value")  (0.1ms) CREATE INDEX "index_configuration_options_on_internal_identifier" ON "configuration_options" ("internal_identifier")  (0.1ms) CREATE INDEX "index_configuration_options_on_user_defined" ON "configuration_options" ("user_defined")  (0.1ms) CREATE TABLE "configuration_item_types_configuration_options" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "configuration_item_type_id" integer, "configuration_option_id" integer, "is_default" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_item_idx" ON "configuration_item_types_configuration_options" ("configuration_item_type_id")  (0.1ms) CREATE INDEX "conf_item_type_conf_opt_id_opt_idx" ON "configuration_item_types_configuration_options" ("configuration_option_id")  (0.1ms) CREATE TABLE "configuration_items_configuration_options" ("configuration_item_id" integer, "configuration_option_id" integer)   (0.1ms) CREATE INDEX "conf_item_conf_opt_id_item_idx" ON "configuration_items_configuration_options" ("configuration_item_id")  (0.1ms) CREATE INDEX "conf_item_conf_opt_id_opt_idx" ON "configuration_items_configuration_options" ("configuration_option_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130105135839')  (1.7ms) commit transaction Migrating to AddTxnStatus (20130422153805)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "status_applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "tracked_status_type_id" integer, "status_application_record_id" integer, "status_application_record_type" varchar(255), "from_date" datetime, "thru_date" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "status_applications_record_idx" ON "status_applications" ("status_application_record_id", "status_application_record_type")  (0.1ms) CREATE INDEX "tracked_status_type_id_idx" ON "status_applications" ("tracked_status_type_id")  (0.1ms) CREATE INDEX "from_date_idx" ON "status_applications" ("from_date")  (0.1ms) CREATE INDEX "thru_date_idx" ON "status_applications" ("thru_date")  (0.1ms) CREATE TABLE "tracked_status_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "internal_identifier" varchar(255), "external_identifier" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "tracked_status_types_iid_idx" ON "tracked_status_types" ("internal_identifier")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422153805')  (0.9ms) commit transaction Migrating to UpgradeCompassAeInstances (20130422153806)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "compass_ae_instance_party_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "compass_ae_instance_id" integer, "party_id" integer, "role_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "compass_ae_instance_id_idx" ON "compass_ae_instance_party_roles" ("compass_ae_instance_id")  (0.1ms) CREATE INDEX "party_id_idx" ON "compass_ae_instance_party_roles" ("party_id")  (0.1ms) CREATE INDEX "role_type_id_idx" ON "compass_ae_instance_party_roles" ("role_type_id")  (0.2ms) ALTER TABLE "compass_ae_instances" ADD "description" varchar(255)  (0.2ms) ALTER TABLE "compass_ae_instances" ADD "internal_identifier" varchar(255)  (0.2ms) ALTER TABLE "compass_ae_instances" ADD "type" varchar(255)  (0.2ms) ALTER TABLE "compass_ae_instances" ADD "schema" varchar(255) DEFAULT 'public'  (0.2ms) ALTER TABLE "compass_ae_instances" ADD "parent_id" integer  (0.1ms) CREATE INDEX "iid_idx" ON "compass_ae_instances" ("internal_identifier")  (0.1ms) CREATE INDEX "schema_idx" ON "compass_ae_instances" ("schema")  (0.1ms) CREATE INDEX "type_idx" ON "compass_ae_instances" ("type")  (0.1ms) CREATE INDEX "parent_id_idx" ON "compass_ae_instances" ("parent_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422153806')  (1.0ms) commit transaction Migrating to AddUuidCompassAeInstance (20130422153807)  (0.0ms) begin transaction  (0.4ms) ALTER TABLE "compass_ae_instances" ADD "guid" varchar(255)  (0.2ms) CREATE INDEX "guid_idx" ON "compass_ae_instances" ("guid")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422153807')  (0.9ms) commit transaction Migrating to AddLongLatToAddress (20130422153808)  (0.0ms) begin transaction  (0.3ms) ALTER TABLE "postal_addresses" ADD "latitude" decimal(12,8)  (0.2ms) ALTER TABLE "postal_addresses" ADD "longitude" decimal(12,8)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422153808')  (0.6ms) commit transaction Migrating to AddQueueToDelayedJobs (20130422153809)  (0.0ms) begin transaction  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422153809')  (0.6ms) commit transaction Migrating to AddJobTracker (20130422153810)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "job_trackers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "job_name" varchar(255), "job_klass" varchar(255), "run_time" varchar(255), "last_run_at" datetime, "next_run_at" datetime)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422153810')  (0.8ms) commit transaction Migrating to UpdateMobileApplication (20130422153811)  (0.0ms) begin transaction  (0.3ms) CREATE TEMPORARY TABLE "altered_applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "xtype" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "applications"  (0.2ms) DROP TABLE "applications"  (0.2ms) CREATE TABLE "applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "description" varchar(255), "icon" varchar(255), "internal_identifier" varchar(255), "javascript_class_name" varchar(255), "shortcut_id" varchar(255), "xtype" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) SELECT * FROM "altered_applications"  (0.2ms) DROP TABLE "altered_applications" MobileApplication Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('MobileApplication') AND "applications"."internal_identifier" = 'user_management' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."type" = 'MobileApplication') LIMIT 1 SQL (1.6ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:17 UTC +00:00], ["description", "User Mgmt"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "MobileApplication"], ["updated_at", Mon, 22 Apr 2013 15:55:17 UTC +00:00], ["xtype", "compass-erpapp-mobile-usermanagement-application"]]  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422153811')  (2.4ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml NoteType Load (2.1ms) SELECT "note_types".* FROM "note_types"  ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types"  RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types"  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) select sqlite_version(*)  (2.7ms) CREATE TABLE "data_migrations" ("version" varchar(255))   (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20100819181805')  (0.1ms) select max(version) as current_version from data_migrations  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110109173616'  (0.1ms) begin transaction CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE (internal_identifier = 'download') LIMIT 1 SQL (6.4ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:24 UTC +00:00], ["description", "Download"], ["internal_identifier", "download"], ["updated_at", Mon, 22 Apr 2013 15:55:24 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'instance') LIMIT 1 SQL (0.3ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:24 UTC +00:00], ["description", "Instance"], ["internal_identifier", "instance"], ["updated_at", Mon, 22 Apr 2013 15:55:24 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'class') LIMIT 1 SQL (0.2ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:24 UTC +00:00], ["description", "Class"], ["internal_identifier", "class"], ["updated_at", Mon, 22 Apr 2013 15:55:24 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE (internal_identifier = 'query') LIMIT 1 SQL (0.1ms) INSERT INTO "scope_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:24 UTC +00:00], ["description", "Query"], ["internal_identifier", "query"], ["updated_at", Mon, 22 Apr 2013 15:55:24 UTC +00:00]]  (0.7ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110109173616')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110525001935'  (0.0ms) begin transaction SQL (0.6ms) INSERT INTO "currencies" ("created_at", "definition", "expiration_date", "internal_identifier", "introduction_date", "major_unit_symbol", "minor_unit_symbol", "name", "numeric_code", "postfix_label", "ratio_of_minor_unit_to_major_unit", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:24 UTC +00:00], ["definition", nil], ["expiration_date", nil], ["internal_identifier", "USD"], ["introduction_date", nil], ["major_unit_symbol", "$"], ["minor_unit_symbol", nil], ["name", "US Dollar"], ["numeric_code", nil], ["postfix_label", nil], ["ratio_of_minor_unit_to_major_unit", nil], ["updated_at", Mon, 22 Apr 2013 15:55:24 UTC +00:00]]  (0.9ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110525001935')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110609150135'  (0.0ms) begin transaction GeoCountry Load (0.1ms) SELECT "geo_countries".* FROM "geo_countries"  SQL (0.5ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 1], ["iso_code_2", "AF"], ["iso_code_3", "AFG"], ["name", "Afghanistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 2], ["iso_code_2", "AL"], ["iso_code_3", "ALB"], ["name", "Albania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 3], ["iso_code_2", "DZ"], ["iso_code_3", "DZA"], ["name", "Algeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 4], ["iso_code_2", "AS"], ["iso_code_3", "ASM"], ["name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 5], ["iso_code_2", "AD"], ["iso_code_3", "AND"], ["name", "Andorra"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 6], ["iso_code_2", "AO"], ["iso_code_3", "AGO"], ["name", "Angola"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 7], ["iso_code_2", "AI"], ["iso_code_3", "AIA"], ["name", "Anguilla"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 8], ["iso_code_2", "AQ"], ["iso_code_3", "ATA"], ["name", "Antarctica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 9], ["iso_code_2", "AG"], ["iso_code_3", "ATG"], ["name", "Antigua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 10], ["iso_code_2", "AR"], ["iso_code_3", "ARG"], ["name", "Argentina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 11], ["iso_code_2", "AM"], ["iso_code_3", "ARM"], ["name", "Armenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 12], ["iso_code_2", "AW"], ["iso_code_3", "ABW"], ["name", "Aruba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 13], ["iso_code_2", "AU"], ["iso_code_3", "AUS"], ["name", "Australia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 14], ["iso_code_2", "AT"], ["iso_code_3", "AUT"], ["name", "Austria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:22 UTC +00:00], ["display", true], ["external_id", nil], ["id", 15], ["iso_code_2", "AZ"], ["iso_code_3", "AZE"], ["name", "Azerbaijan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 16], ["iso_code_2", "BS"], ["iso_code_3", "BHS"], ["name", "Bahamas"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 17], ["iso_code_2", "BH"], ["iso_code_3", "BHR"], ["name", "Bahrain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 18], ["iso_code_2", "BD"], ["iso_code_3", "BGD"], ["name", "Bangladesh"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 19], ["iso_code_2", "BB"], ["iso_code_3", "BRB"], ["name", "Barbados"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 20], ["iso_code_2", "BY"], ["iso_code_3", "BLR"], ["name", "Belarus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 21], ["iso_code_2", "BE"], ["iso_code_3", "BEL"], ["name", "Belgium"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 22], ["iso_code_2", "BZ"], ["iso_code_3", "BLZ"], ["name", "Belize"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 23], ["iso_code_2", "BJ"], ["iso_code_3", "BEN"], ["name", "Benin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 24], ["iso_code_2", "BM"], ["iso_code_3", "BMU"], ["name", "Bermuda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 25], ["iso_code_2", "BT"], ["iso_code_3", "BTN"], ["name", "Bhutan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 26], ["iso_code_2", "BO"], ["iso_code_3", "BOL"], ["name", "Bolivia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 27], ["iso_code_2", "BA"], ["iso_code_3", "BIH"], ["name", "Bosnia and Herzegowina"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 28], ["iso_code_2", "BW"], ["iso_code_3", "BWA"], ["name", "Botswana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 29], ["iso_code_2", "BV"], ["iso_code_3", "BVT"], ["name", "Bouvet Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 30], ["iso_code_2", "BR"], ["iso_code_3", "BRA"], ["name", "Brazil"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 31], ["iso_code_2", "IO"], ["iso_code_3", "IOT"], ["name", "British Indian Ocean Territory"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 32], ["iso_code_2", "BN"], ["iso_code_3", "BRN"], ["name", "Brunei Darussalam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 33], ["iso_code_2", "BG"], ["iso_code_3", "BGR"], ["name", "Bulgaria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 34], ["iso_code_2", "BF"], ["iso_code_3", "BFA"], ["name", "Burkina Faso"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 35], ["iso_code_2", "BI"], ["iso_code_3", "BDI"], ["name", "Burundi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 36], ["iso_code_2", "KH"], ["iso_code_3", "KHM"], ["name", "Cambodia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:23 UTC +00:00], ["display", true], ["external_id", nil], ["id", 37], ["iso_code_2", "CM"], ["iso_code_3", "CMR"], ["name", "Cameroon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 38], ["iso_code_2", "CA"], ["iso_code_3", "CAN"], ["name", "Canada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 39], ["iso_code_2", "CV"], ["iso_code_3", "CPV"], ["name", "Cape Verde"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 40], ["iso_code_2", "KY"], ["iso_code_3", "CYM"], ["name", "Cayman Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 41], ["iso_code_2", "CF"], ["iso_code_3", "CAF"], ["name", "Central African Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 42], ["iso_code_2", "TD"], ["iso_code_3", "TCD"], ["name", "Chad"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 43], ["iso_code_2", "CL"], ["iso_code_3", "CHL"], ["name", "Chile"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 44], ["iso_code_2", "CN"], ["iso_code_3", "CHN"], ["name", "China"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 45], ["iso_code_2", "CX"], ["iso_code_3", "CXR"], ["name", "Christmas Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 46], ["iso_code_2", "CC"], ["iso_code_3", "CCK"], ["name", "Cocos (Keeling) Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 47], ["iso_code_2", "CO"], ["iso_code_3", "COL"], ["name", "Colombia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 48], ["iso_code_2", "KM"], ["iso_code_3", "COM"], ["name", "Comoros"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 49], ["iso_code_2", "CG"], ["iso_code_3", "COG"], ["name", "Congo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 50], ["iso_code_2", "CK"], ["iso_code_3", "COK"], ["name", "Cook Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 51], ["iso_code_2", "CR"], ["iso_code_3", "CRI"], ["name", "Costa Rica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 52], ["iso_code_2", "CI"], ["iso_code_3", "CIV"], ["name", "Cote DIvoire"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 53], ["iso_code_2", "HR"], ["iso_code_3", "HRV"], ["name", "Croatia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 54], ["iso_code_2", "CU"], ["iso_code_3", "CUB"], ["name", "Cuba"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 55], ["iso_code_2", "CY"], ["iso_code_3", "CYP"], ["name", "Cyprus"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 56], ["iso_code_2", "CZ"], ["iso_code_3", "CZE"], ["name", "Czech Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 57], ["iso_code_2", "DK"], ["iso_code_3", "DNK"], ["name", "Denmark"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 58], ["iso_code_2", "DJ"], ["iso_code_3", "DJI"], ["name", "Djibouti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:24 UTC +00:00], ["display", true], ["external_id", nil], ["id", 59], ["iso_code_2", "DM"], ["iso_code_3", "DMA"], ["name", "Dominica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 60], ["iso_code_2", "DO"], ["iso_code_3", "DOM"], ["name", "Dominican Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 62], ["iso_code_2", "EC"], ["iso_code_3", "ECU"], ["name", "Ecuador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 63], ["iso_code_2", "EG"], ["iso_code_3", "EGY"], ["name", "Egypt"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 64], ["iso_code_2", "SV"], ["iso_code_3", "SLV"], ["name", "El Salvador"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 65], ["iso_code_2", "GQ"], ["iso_code_3", "GNQ"], ["name", "Equatorial Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 66], ["iso_code_2", "ER"], ["iso_code_3", "ERI"], ["name", "Eritrea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 67], ["iso_code_2", "EE"], ["iso_code_3", "EST"], ["name", "Estonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 68], ["iso_code_2", "ET"], ["iso_code_3", "ETH"], ["name", "Ethiopia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 69], ["iso_code_2", "FK"], ["iso_code_3", "FLK"], ["name", "Falkland Islands (Malvinas)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 70], ["iso_code_2", "FO"], ["iso_code_3", "FRO"], ["name", "Faroe Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 71], ["iso_code_2", "FJ"], ["iso_code_3", "FJI"], ["name", "Fiji"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 72], ["iso_code_2", "FI"], ["iso_code_3", "FIN"], ["name", "Finland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 73], ["iso_code_2", "FR"], ["iso_code_3", "FRA"], ["name", "France"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 75], ["iso_code_2", "GF"], ["iso_code_3", "GUF"], ["name", "French Guiana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 76], ["iso_code_2", "PF"], ["iso_code_3", "PYF"], ["name", "French Polynesia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 77], ["iso_code_2", "TF"], ["iso_code_3", "ATF"], ["name", "French Southern Territories"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 78], ["iso_code_2", "GA"], ["iso_code_3", "GAB"], ["name", "Gabon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 79], ["iso_code_2", "GM"], ["iso_code_3", "GMB"], ["name", "Gambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 80], ["iso_code_2", "GE"], ["iso_code_3", "GEO"], ["name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:25 UTC +00:00], ["display", true], ["external_id", nil], ["id", 81], ["iso_code_2", "DE"], ["iso_code_3", "DEU"], ["name", "Germany"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 82], ["iso_code_2", "GH"], ["iso_code_3", "GHA"], ["name", "Ghana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 83], ["iso_code_2", "GI"], ["iso_code_3", "GIB"], ["name", "Gibraltar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 84], ["iso_code_2", "GR"], ["iso_code_3", "GRC"], ["name", "Greece"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 85], ["iso_code_2", "GL"], ["iso_code_3", "GRL"], ["name", "Greenland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 86], ["iso_code_2", "GD"], ["iso_code_3", "GRD"], ["name", "Grenada"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 87], ["iso_code_2", "GP"], ["iso_code_3", "GLP"], ["name", "Guadeloupe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 88], ["iso_code_2", "GU"], ["iso_code_3", "GUM"], ["name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 89], ["iso_code_2", "GT"], ["iso_code_3", "GTM"], ["name", "Guatemala"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 90], ["iso_code_2", "GN"], ["iso_code_3", "GIN"], ["name", "Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 91], ["iso_code_2", "GW"], ["iso_code_3", "GNB"], ["name", "Guinea-bissau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 92], ["iso_code_2", "GY"], ["iso_code_3", "GUY"], ["name", "Guyana"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 93], ["iso_code_2", "HT"], ["iso_code_3", "HTI"], ["name", "Haiti"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 94], ["iso_code_2", "HM"], ["iso_code_3", "HMD"], ["name", "Heard and Mc Donald Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 95], ["iso_code_2", "HN"], ["iso_code_3", "HND"], ["name", "Honduras"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 96], ["iso_code_2", "HK"], ["iso_code_3", "HKG"], ["name", "Hong Kong"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 97], ["iso_code_2", "HU"], ["iso_code_3", "HUN"], ["name", "Hungary"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:26 UTC +00:00], ["display", true], ["external_id", nil], ["id", 98], ["iso_code_2", "IS"], ["iso_code_3", "ISL"], ["name", "Iceland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 99], ["iso_code_2", "IN"], ["iso_code_3", "IND"], ["name", "India"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 100], ["iso_code_2", "ID"], ["iso_code_3", "IDN"], ["name", "Indonesia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 101], ["iso_code_2", "IR"], ["iso_code_3", "IRN"], ["name", "Iran, Islamic Republic o"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 102], ["iso_code_2", "IQ"], ["iso_code_3", "IRQ"], ["name", "Iraq"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 103], ["iso_code_2", "IE"], ["iso_code_3", "IRL"], ["name", "Ireland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 104], ["iso_code_2", "IL"], ["iso_code_3", "ISR"], ["name", "Israel"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 105], ["iso_code_2", "IT"], ["iso_code_3", "ITA"], ["name", "Italy"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 106], ["iso_code_2", "JM"], ["iso_code_3", "JAM"], ["name", "Jamaica"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 107], ["iso_code_2", "JP"], ["iso_code_3", "JPN"], ["name", "Japan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 108], ["iso_code_2", "JO"], ["iso_code_3", "JOR"], ["name", "Jordan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:27 UTC +00:00], ["display", true], ["external_id", nil], ["id", 109], ["iso_code_2", "KZ"], ["iso_code_3", "KAZ"], ["name", "Kazakhstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 110], ["iso_code_2", "KE"], ["iso_code_3", "KEN"], ["name", "Kenya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 111], ["iso_code_2", "KI"], ["iso_code_3", "KIR"], ["name", "Kiribati"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 112], ["iso_code_2", "KP"], ["iso_code_3", "PRK"], ["name", "Korea, Democratic People's Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 113], ["iso_code_2", "KR"], ["iso_code_3", "KOR"], ["name", "Korea, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 114], ["iso_code_2", "KW"], ["iso_code_3", "KWT"], ["name", "Kuwait"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 115], ["iso_code_2", "KG"], ["iso_code_3", "KGZ"], ["name", "Kyrgyzstan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 116], ["iso_code_2", "LA"], ["iso_code_3", "LAO"], ["name", "Lao Peoples Democratic Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 117], ["iso_code_2", "LV"], ["iso_code_3", "LVA"], ["name", "Latvia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 118], ["iso_code_2", "LB"], ["iso_code_3", "LBN"], ["name", "Lebanon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 119], ["iso_code_2", "LS"], ["iso_code_3", "LSO"], ["name", "Lesotho"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 120], ["iso_code_2", "LR"], ["iso_code_3", "LBR"], ["name", "Liberia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 121], ["iso_code_2", "LY"], ["iso_code_3", "LBY"], ["name", "Libyan Arab Jamahiriya"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 122], ["iso_code_2", "LI"], ["iso_code_3", "LIE"], ["name", "Liechtenstein"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 123], ["iso_code_2", "LT"], ["iso_code_3", "LTU"], ["name", "Lithuania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:28 UTC +00:00], ["display", true], ["external_id", nil], ["id", 124], ["iso_code_2", "LU"], ["iso_code_3", "LUX"], ["name", "Luxembourg"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 125], ["iso_code_2", "MO"], ["iso_code_3", "MAC"], ["name", "Macao"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 126], ["iso_code_2", "MK"], ["iso_code_3", "MKD"], ["name", "Macedonia, The Former Yugoslav Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 127], ["iso_code_2", "MG"], ["iso_code_3", "MDG"], ["name", "Madagascar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 128], ["iso_code_2", "MW"], ["iso_code_3", "MWI"], ["name", "Malawi"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 129], ["iso_code_2", "MY"], ["iso_code_3", "MYS"], ["name", "Malaysia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 130], ["iso_code_2", "MV"], ["iso_code_3", "MDV"], ["name", "Maldives"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 131], ["iso_code_2", "ML"], ["iso_code_3", "MLI"], ["name", "Mali"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 132], ["iso_code_2", "MT"], ["iso_code_3", "MLT"], ["name", "Malta"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 133], ["iso_code_2", "MH"], ["iso_code_3", "MHL"], ["name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 134], ["iso_code_2", "MQ"], ["iso_code_3", "MTQ"], ["name", "Martinique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 135], ["iso_code_2", "MR"], ["iso_code_3", "MRT"], ["name", "Mauritania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 136], ["iso_code_2", "MU"], ["iso_code_3", "MUS"], ["name", "Mauritius"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 137], ["iso_code_2", "YT"], ["iso_code_3", "MYT"], ["name", "Mayotte"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 138], ["iso_code_2", "MX"], ["iso_code_3", "MEX"], ["name", "Mexico"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 139], ["iso_code_2", "FM"], ["iso_code_3", "FSM"], ["name", "Micronesia, Federated States of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 140], ["iso_code_2", "MD"], ["iso_code_3", "MDA"], ["name", "Moldova, Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 141], ["iso_code_2", "MC"], ["iso_code_3", "MCO"], ["name", "Monaco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 142], ["iso_code_2", "MN"], ["iso_code_3", "MNG"], ["name", "Mongolia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 143], ["iso_code_2", "MS"], ["iso_code_3", "MSR"], ["name", "Montserrat"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 144], ["iso_code_2", "MA"], ["iso_code_3", "MAR"], ["name", "Morocco"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:29 UTC +00:00], ["display", true], ["external_id", nil], ["id", 145], ["iso_code_2", "MZ"], ["iso_code_3", "MOZ"], ["name", "Mozambique"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 146], ["iso_code_2", "MM"], ["iso_code_3", "MMR"], ["name", "Myanmar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 147], ["iso_code_2", "NA"], ["iso_code_3", "NAM"], ["name", "Namibia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 148], ["iso_code_2", "NR"], ["iso_code_3", "NRU"], ["name", "Nauru"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 149], ["iso_code_2", "NP"], ["iso_code_3", "NPL"], ["name", "Nepal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 150], ["iso_code_2", "NL"], ["iso_code_3", "NLD"], ["name", "Netherlands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 152], ["iso_code_2", "NC"], ["iso_code_3", "NCL"], ["name", "New Caledonia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 153], ["iso_code_2", "NZ"], ["iso_code_3", "NZL"], ["name", "New Zealand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 154], ["iso_code_2", "NI"], ["iso_code_3", "NIC"], ["name", "Nicaragua"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 155], ["iso_code_2", "NE"], ["iso_code_3", "NER"], ["name", "Niger"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 156], ["iso_code_2", "NG"], ["iso_code_3", "NGA"], ["name", "Nigeria"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 157], ["iso_code_2", "NU"], ["iso_code_3", "NIU"], ["name", "Niue"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 158], ["iso_code_2", "NF"], ["iso_code_3", "NFK"], ["name", "Norfolk Island"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 159], ["iso_code_2", "MP"], ["iso_code_3", "MNP"], ["name", "Northern Mariana Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 160], ["iso_code_2", "NO"], ["iso_code_3", "NOR"], ["name", "Norway"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 161], ["iso_code_2", "OM"], ["iso_code_3", "OMN"], ["name", "Oman"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 162], ["iso_code_2", "PK"], ["iso_code_3", "PAK"], ["name", "Pakistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 163], ["iso_code_2", "PW"], ["iso_code_3", "PLW"], ["name", "Palau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 164], ["iso_code_2", "PA"], ["iso_code_3", "PAN"], ["name", "Panama"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 165], ["iso_code_2", "PG"], ["iso_code_3", "PNG"], ["name", "Papua New Guinea"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 166], ["iso_code_2", "PY"], ["iso_code_3", "PRY"], ["name", "Paraguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:30 UTC +00:00], ["display", true], ["external_id", nil], ["id", 167], ["iso_code_2", "PE"], ["iso_code_3", "PER"], ["name", "Peru"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 168], ["iso_code_2", "PH"], ["iso_code_3", "PHL"], ["name", "Philippines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 169], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 170], ["iso_code_2", "PL"], ["iso_code_3", "POL"], ["name", "Poland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 171], ["iso_code_2", "PT"], ["iso_code_3", "PRT"], ["name", "Portugal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 172], ["iso_code_2", "PR"], ["iso_code_3", "PRI"], ["name", "Puerto Rico"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 173], ["iso_code_2", "QA"], ["iso_code_3", "QAT"], ["name", "Qatar"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 174], ["iso_code_2", "RE"], ["iso_code_3", "REU"], ["name", "Reunion"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 175], ["iso_code_2", "RO"], ["iso_code_3", "ROM"], ["name", "Romania"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 176], ["iso_code_2", "RU"], ["iso_code_3", "RUS"], ["name", "Russian Federation"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 177], ["iso_code_2", "RW"], ["iso_code_3", "RWA"], ["name", "Rwanda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 178], ["iso_code_2", "KN"], ["iso_code_3", "KNA"], ["name", "Saint Kitts and Nevis"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 179], ["iso_code_2", "LC"], ["iso_code_3", "LCA"], ["name", "Saint Lucia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 180], ["iso_code_2", "VC"], ["iso_code_3", "VCT"], ["name", "Saint Vincent and the Grenadines"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 181], ["iso_code_2", "WS"], ["iso_code_3", "WSM"], ["name", "Samoa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 182], ["iso_code_2", "SM"], ["iso_code_3", "SMR"], ["name", "San Marino"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 183], ["iso_code_2", "ST"], ["iso_code_3", "STP"], ["name", "Sao Tome and Principe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 184], ["iso_code_2", "SA"], ["iso_code_3", "SAU"], ["name", "Saudi Arabia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 185], ["iso_code_2", "SN"], ["iso_code_3", "SEN"], ["name", "Senegal"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 186], ["iso_code_2", "SC"], ["iso_code_3", "SYC"], ["name", "Seychelles"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:31 UTC +00:00], ["display", true], ["external_id", nil], ["id", 187], ["iso_code_2", "SL"], ["iso_code_3", "SLE"], ["name", "Sierra Leone"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 188], ["iso_code_2", "SG"], ["iso_code_3", "SGP"], ["name", "Singapore"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 189], ["iso_code_2", "SK"], ["iso_code_3", "SVK"], ["name", "Slovakia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 190], ["iso_code_2", "SI"], ["iso_code_3", "SVN"], ["name", "Slovenia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 191], ["iso_code_2", "SB"], ["iso_code_3", "SLB"], ["name", "Solomon Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 192], ["iso_code_2", "SO"], ["iso_code_3", "SOM"], ["name", "Somalia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 193], ["iso_code_2", "ZA"], ["iso_code_3", "ZAF"], ["name", "South Africa"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 194], ["iso_code_2", "GS"], ["iso_code_3", "SGS"], ["name", "South Georgia and the South Sandwich Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 195], ["iso_code_2", "ES"], ["iso_code_3", "ESP"], ["name", "Spain"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 196], ["iso_code_2", "LK"], ["iso_code_3", "LKA"], ["name", "Sri Lanka"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 197], ["iso_code_2", "SH"], ["iso_code_3", "SHN"], ["name", "Saint Helena, Ascension and Tristan da Cunha"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 198], ["iso_code_2", "PM"], ["iso_code_3", "SPM"], ["name", "Saint Pierre and Miquelon"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 199], ["iso_code_2", "SD"], ["iso_code_3", "SDN"], ["name", "Sudan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 200], ["iso_code_2", "SR"], ["iso_code_3", "SUR"], ["name", "Suriname"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 201], ["iso_code_2", "SJ"], ["iso_code_3", "SJM"], ["name", "Svalbard and Jan Mayen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 202], ["iso_code_2", "SZ"], ["iso_code_3", "SWZ"], ["name", "Swaziland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 203], ["iso_code_2", "SE"], ["iso_code_3", "SWE"], ["name", "Sweden"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 204], ["iso_code_2", "CH"], ["iso_code_3", "CHE"], ["name", "Switzerland"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 205], ["iso_code_2", "SY"], ["iso_code_3", "SYR"], ["name", "Syrian Arab Republic"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 206], ["iso_code_2", "TW"], ["iso_code_3", "TWN"], ["name", "Taiwan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 207], ["iso_code_2", "TJ"], ["iso_code_3", "TJK"], ["name", "Tajikistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 208], ["iso_code_2", "TZ"], ["iso_code_3", "TZA"], ["name", "Tanzania, United Republic of"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:32 UTC +00:00], ["display", true], ["external_id", nil], ["id", 209], ["iso_code_2", "TH"], ["iso_code_3", "THA"], ["name", "Thailand"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 210], ["iso_code_2", "TG"], ["iso_code_3", "TGO"], ["name", "Togo"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 211], ["iso_code_2", "TK"], ["iso_code_3", "TKL"], ["name", "Tokelau"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 212], ["iso_code_2", "TO"], ["iso_code_3", "TON"], ["name", "Tonga"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 213], ["iso_code_2", "TT"], ["iso_code_3", "TTO"], ["name", "Trinidad and Tobago"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 214], ["iso_code_2", "TN"], ["iso_code_3", "TUN"], ["name", "Tunisia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 215], ["iso_code_2", "TR"], ["iso_code_3", "TUR"], ["name", "Turkey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 216], ["iso_code_2", "TM"], ["iso_code_3", "TKM"], ["name", "Turkmenistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 217], ["iso_code_2", "TC"], ["iso_code_3", "TCA"], ["name", "Turks and Caicos Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 218], ["iso_code_2", "TV"], ["iso_code_3", "TUV"], ["name", "Tuvalu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 219], ["iso_code_2", "UG"], ["iso_code_3", "UGA"], ["name", "Uganda"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 220], ["iso_code_2", "UA"], ["iso_code_3", "UKR"], ["name", "Ukraine"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 221], ["iso_code_2", "AE"], ["iso_code_3", "ARE"], ["name", "United Arab Emirates"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 222], ["iso_code_2", "GB"], ["iso_code_3", "GBR"], ["name", "United Kingdom"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 223], ["iso_code_2", "US"], ["iso_code_3", "USA"], ["name", "United States"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:33 UTC +00:00], ["display", true], ["external_id", nil], ["id", 224], ["iso_code_2", "UM"], ["iso_code_3", "UMI"], ["name", "United States Minor Outlying Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 225], ["iso_code_2", "UY"], ["iso_code_3", "URY"], ["name", "Uruguay"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 226], ["iso_code_2", "UZ"], ["iso_code_3", "UZB"], ["name", "Uzbekistan"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 227], ["iso_code_2", "VU"], ["iso_code_3", "VUT"], ["name", "Vanuatu"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 228], ["iso_code_2", "VA"], ["iso_code_3", "VAT"], ["name", "Holy See (Vatican City State)"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 229], ["iso_code_2", "VE"], ["iso_code_3", "VEN"], ["name", "Venezuela"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 230], ["iso_code_2", "VN"], ["iso_code_3", "VNM"], ["name", "Viet Nam"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 231], ["iso_code_2", "VG"], ["iso_code_3", "VGB"], ["name", "Virgin Islands, British"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 232], ["iso_code_2", "VI"], ["iso_code_3", "VIR"], ["name", "Virgin Islands, U.S."]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 233], ["iso_code_2", "WF"], ["iso_code_3", "WLF"], ["name", "Wallis and Futuna"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 234], ["iso_code_2", "EH"], ["iso_code_3", "ESH"], ["name", "Western Sahara"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 235], ["iso_code_2", "YE"], ["iso_code_3", "YEM"], ["name", "Yemen"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:34 UTC +00:00], ["display", true], ["external_id", nil], ["id", 238], ["iso_code_2", "ZM"], ["iso_code_3", "ZMB"], ["name", "Zambia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 22 Jan 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 239], ["iso_code_2", "ZW"], ["iso_code_3", "ZWE"], ["name", "Zimbabwe"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 240], ["iso_code_2", "MF"], ["iso_code_3", "MAF"], ["name", "Saint Martin"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 02 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 241], ["iso_code_2", "AX"], ["iso_code_3", "ALA"], ["name", "Aland Islands"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 242], ["iso_code_2", "CD"], ["iso_code_3", "COD"], ["name", "Congo, Democratic Republic of the"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 243], ["iso_code_2", "GG"], ["iso_code_3", "GGY"], ["name", "Guernsey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 244], ["iso_code_2", "IM"], ["iso_code_3", "IMN"], ["name", "Isle of Man"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 245], ["iso_code_2", "JE"], ["iso_code_3", "JEY"], ["name", "Jersey"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 246], ["iso_code_2", "ME"], ["iso_code_3", "MNE"], ["name", "Montenegro"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 247], ["iso_code_2", "PS"], ["iso_code_3", "PSE"], ["name", "Palestinian Territory, Occupied"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 248], ["iso_code_2", "TL"], ["iso_code_3", "TLS"], ["name", "Timor-Leste"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 249], ["iso_code_2", "RS"], ["iso_code_3", "SRB"], ["name", "Serbia"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 250], ["iso_code_2", "PN"], ["iso_code_3", "PCN"], ["name", "Pitcairn"]] SQL (0.1ms) INSERT INTO "geo_countries" ("created_at", "display", "external_id", "id", "iso_code_2", "iso_code_3", "name") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 29 Sep 2010 19:42:35 UTC +00:00], ["display", true], ["external_id", nil], ["id", 251], ["iso_code_2", "BL"], ["iso_code_3", "BLM"], ["name", "Saint Barthelemy"]] GeoZone Load (0.1ms) SELECT "geo_zones".* FROM "geo_zones" SQL (0.4ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 1], ["zone_code", "AL"], ["zone_name", "Alabama"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 2], ["zone_code", "AK"], ["zone_name", "Alaska"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 3], ["zone_code", "AS"], ["zone_name", "American Samoa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 4], ["zone_code", "AZ"], ["zone_name", "Arizona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 5], ["zone_code", "AR"], ["zone_name", "Arkansas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 6], ["zone_code", "AF"], ["zone_name", "Armed Forces"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 7], ["zone_code", "CA"], ["zone_name", "California"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 8], ["zone_code", "CO"], ["zone_name", "Colorado"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 9], ["zone_code", "CT"], ["zone_name", "Connecticut"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 10], ["zone_code", "DE"], ["zone_name", "Delaware"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 11], ["zone_code", "DC"], ["zone_name", "District of Columbia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 12], ["zone_code", "FM"], ["zone_name", "Federated States Of Micronesia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 13], ["zone_code", "FL"], ["zone_name", "Florida"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 14], ["zone_code", "GA"], ["zone_name", "Georgia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 15], ["zone_code", "GU"], ["zone_name", "Guam"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 16], ["zone_code", "HI"], ["zone_name", "Hawaii"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 17], ["zone_code", "ID"], ["zone_name", "Idaho"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 18], ["zone_code", "IL"], ["zone_name", "Illinois"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 19], ["zone_code", "IN"], ["zone_name", "Indiana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 20], ["zone_code", "IA"], ["zone_name", "Iowa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 21], ["zone_code", "KS"], ["zone_name", "Kansas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 22], ["zone_code", "KY"], ["zone_name", "Kentucky"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 23], ["zone_code", "LA"], ["zone_name", "Louisiana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 24], ["zone_code", "ME"], ["zone_name", "Maine"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 25], ["zone_code", "MH"], ["zone_name", "Marshall Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 26], ["zone_code", "MD"], ["zone_name", "Maryland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 27], ["zone_code", "MA"], ["zone_name", "Massachusetts"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 28], ["zone_code", "MI"], ["zone_name", "Michigan"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 29], ["zone_code", "MN"], ["zone_name", "Minnesota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 30], ["zone_code", "MS"], ["zone_name", "Mississippi"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 31], ["zone_code", "MO"], ["zone_name", "Missouri"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 32], ["zone_code", "MT"], ["zone_name", "Montana"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 33], ["zone_code", "NE"], ["zone_name", "Nebraska"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 34], ["zone_code", "NV"], ["zone_name", "Nevada"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 35], ["zone_code", "NH"], ["zone_name", "New Hampshire"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 36], ["zone_code", "NJ"], ["zone_name", "New Jersey"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 37], ["zone_code", "NM"], ["zone_name", "New Mexico"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 38], ["zone_code", "NY"], ["zone_name", "New York"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 39], ["zone_code", "NC"], ["zone_name", "North Carolina"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 40], ["zone_code", "ND"], ["zone_name", "North Dakota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 41], ["zone_code", "MP"], ["zone_name", "Northern Mariana Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 42], ["zone_code", "OH"], ["zone_name", "Ohio"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 43], ["zone_code", "OK"], ["zone_name", "Oklahoma"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 44], ["zone_code", "OR"], ["zone_name", "Oregon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 45], ["zone_code", "PW"], ["zone_name", "Palau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 46], ["zone_code", "PA"], ["zone_name", "Pennsylvania"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 47], ["zone_code", "PR"], ["zone_name", "Puerto Rico"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 48], ["zone_code", "RI"], ["zone_name", "Rhode Island"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 49], ["zone_code", "SC"], ["zone_name", "South Carolina"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 50], ["zone_code", "SD"], ["zone_name", "South Dakota"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 51], ["zone_code", "TN"], ["zone_name", "Tennessee"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 52], ["zone_code", "TX"], ["zone_name", "Texas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 53], ["zone_code", "UT"], ["zone_name", "Utah"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 54], ["zone_code", "VT"], ["zone_name", "Vermont"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 55], ["zone_code", "VI"], ["zone_name", "Virgin Islands"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 56], ["zone_code", "VA"], ["zone_name", "Virginia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 57], ["zone_code", "WA"], ["zone_name", "Washington"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 58], ["zone_code", "WV"], ["zone_name", "West Virginia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 59], ["zone_code", "WI"], ["zone_name", "Wisconsin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 223], ["id", 60], ["zone_code", "WY"], ["zone_name", "Wyoming"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 38], ["id", 61], ["zone_code", "AB"], ["zone_name", "Alberta"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 38], ["id", 62], ["zone_code", "BC"], ["zone_name", "British Columbia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 38], ["id", 63], ["zone_code", "MB"], ["zone_name", "Manitoba"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 38], ["id", 64], ["zone_code", "NF"], ["zone_name", "Newfoundland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 38], ["id", 65], ["zone_code", "NB"], ["zone_name", "New Brunswick"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 38], ["id", 66], ["zone_code", "NS"], ["zone_name", "Nova Scotia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 38], ["id", 67], ["zone_code", "NT"], ["zone_name", "Northwest Territories"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 38], ["id", 68], ["zone_code", "NU"], ["zone_name", "Nunavut"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 38], ["id", 69], ["zone_code", "ON"], ["zone_name", "Ontario"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 38], ["id", 70], ["zone_code", "PE"], ["zone_name", "Prince Edward Island"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 38], ["id", 71], ["zone_code", "QC"], ["zone_name", "Quebec"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 38], ["id", 72], ["zone_code", "SK"], ["zone_name", "Saskatchewan"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 38], ["id", 73], ["zone_code", "YT"], ["zone_name", "Yukon Territory"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 74], ["zone_code", "NDS"], ["zone_name", "Niedersachsen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 75], ["zone_code", "BAW"], ["zone_name", "Baden-Württemberg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 76], ["zone_code", "BAY"], ["zone_name", "Bayern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 77], ["zone_code", "BER"], ["zone_name", "Berlin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 78], ["zone_code", "BRG"], ["zone_name", "Brandenburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 79], ["zone_code", "BRE"], ["zone_name", "Bremen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 80], ["zone_code", "HAM"], ["zone_name", "Hamburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 81], ["zone_code", "HES"], ["zone_name", "Hessen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 82], ["zone_code", "MEC"], ["zone_name", "Mecklenburg-Vorpommern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 83], ["zone_code", "NRW"], ["zone_name", "Nordrhein-Westfalen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 84], ["zone_code", "RHE"], ["zone_name", "Rheinland-Pfalz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 85], ["zone_code", "SAR"], ["zone_name", "Saarland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 86], ["zone_code", "SAS"], ["zone_name", "Sachsen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 87], ["zone_code", "SAC"], ["zone_name", "Sachsen-Anhalt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 88], ["zone_code", "SCN"], ["zone_name", "Schleswig-Holstein"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 81], ["id", 89], ["zone_code", "THE"], ["zone_name", "Thüringen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 14], ["id", 90], ["zone_code", "WI"], ["zone_name", "Wien"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 14], ["id", 91], ["zone_code", "NO"], ["zone_name", "Niederösterreich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 14], ["id", 92], ["zone_code", "OO"], ["zone_name", "Oberösterreich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 14], ["id", 93], ["zone_code", "SB"], ["zone_name", "Salzburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 14], ["id", 94], ["zone_code", "KN"], ["zone_name", "Kärnten"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 14], ["id", 95], ["zone_code", "ST"], ["zone_name", "Steiermark"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 14], ["id", 96], ["zone_code", "TI"], ["zone_name", "Tirol"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 14], ["id", 97], ["zone_code", "BL"], ["zone_name", "Burgenland"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 14], ["id", 98], ["zone_code", "VB"], ["zone_name", "Voralberg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 99], ["zone_code", "AG"], ["zone_name", "Aargau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 100], ["zone_code", "AI"], ["zone_name", "Appenzell Innerrhoden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 101], ["zone_code", "AR"], ["zone_name", "Appenzell Ausserrhoden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 102], ["zone_code", "BE"], ["zone_name", "Bern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 103], ["zone_code", "BL"], ["zone_name", "Basel-Landschaft"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 104], ["zone_code", "BS"], ["zone_name", "Basel-Stadt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 105], ["zone_code", "FR"], ["zone_name", "Freiburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 106], ["zone_code", "GE"], ["zone_name", "Genf"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 107], ["zone_code", "GL"], ["zone_name", "Glarus"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 108], ["zone_code", "JU"], ["zone_name", "Graubünden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 109], ["zone_code", "JU"], ["zone_name", "Jura"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 110], ["zone_code", "LU"], ["zone_name", "Luzern"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 111], ["zone_code", "NE"], ["zone_name", "Neuenburg"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 112], ["zone_code", "NW"], ["zone_name", "Nidwalden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 113], ["zone_code", "OW"], ["zone_name", "Obwalden"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 114], ["zone_code", "SG"], ["zone_name", "St. Gallen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 115], ["zone_code", "SH"], ["zone_name", "Schaffhausen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 116], ["zone_code", "SO"], ["zone_name", "Solothurn"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 117], ["zone_code", "SZ"], ["zone_name", "Schwyz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 118], ["zone_code", "TG"], ["zone_name", "Thurgau"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 119], ["zone_code", "TI"], ["zone_name", "Tessin"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 120], ["zone_code", "UR"], ["zone_name", "Uri"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 121], ["zone_code", "VD"], ["zone_name", "Waadt"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 122], ["zone_code", "VS"], ["zone_name", "Wallis"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 123], ["zone_code", "ZG"], ["zone_name", "Zug"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 204], ["id", 124], ["zone_code", "ZH"], ["zone_name", "Zürich"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 125], ["zone_code", "A Coruña"], ["zone_name", "A Coruña"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 126], ["zone_code", "Alava"], ["zone_name", "Alava"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 127], ["zone_code", "Albacete"], ["zone_name", "Albacete"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 128], ["zone_code", "Alicante"], ["zone_name", "Alicante"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 129], ["zone_code", "Almeria"], ["zone_name", "Almeria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 130], ["zone_code", "Asturias"], ["zone_name", "Asturias"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 131], ["zone_code", "Avila"], ["zone_name", "Avila"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 132], ["zone_code", "Badajoz"], ["zone_name", "Badajoz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 133], ["zone_code", "Baleares"], ["zone_name", "Baleares"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 134], ["zone_code", "Barcelona"], ["zone_name", "Barcelona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 135], ["zone_code", "Burgos"], ["zone_name", "Burgos"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 136], ["zone_code", "Caceres"], ["zone_name", "Caceres"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 137], ["zone_code", "Cadiz"], ["zone_name", "Cadiz"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 138], ["zone_code", "Cantabria"], ["zone_name", "Cantabria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 139], ["zone_code", "Castellon"], ["zone_name", "Castellon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 140], ["zone_code", "Ceuta"], ["zone_name", "Ceuta"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 141], ["zone_code", "Ciudad Real"], ["zone_name", "Ciudad Real"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 142], ["zone_code", "Cordoba"], ["zone_name", "Cordoba"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 143], ["zone_code", "Cuenca"], ["zone_name", "Cuenca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 144], ["zone_code", "Girona"], ["zone_name", "Girona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 145], ["zone_code", "Granada"], ["zone_name", "Granada"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 146], ["zone_code", "Guadalajara"], ["zone_name", "Guadalajara"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 147], ["zone_code", "Guipuzcoa"], ["zone_name", "Guipuzcoa"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 148], ["zone_code", "Huelva"], ["zone_name", "Huelva"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 149], ["zone_code", "Huesca"], ["zone_name", "Huesca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 150], ["zone_code", "Jaen"], ["zone_name", "Jaen"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 151], ["zone_code", "La Rioja"], ["zone_name", "La Rioja"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 152], ["zone_code", "Las Palmas"], ["zone_name", "Las Palmas"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 153], ["zone_code", "Leon"], ["zone_name", "Leon"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 154], ["zone_code", "Lleida"], ["zone_name", "Lleida"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 155], ["zone_code", "Lugo"], ["zone_name", "Lugo"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 156], ["zone_code", "Madrid"], ["zone_name", "Madrid"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 157], ["zone_code", "Malaga"], ["zone_name", "Malaga"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 158], ["zone_code", "Melilla"], ["zone_name", "Melilla"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 159], ["zone_code", "Murcia"], ["zone_name", "Murcia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 160], ["zone_code", "Navarra"], ["zone_name", "Navarra"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 161], ["zone_code", "Ourense"], ["zone_name", "Ourense"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 162], ["zone_code", "Palencia"], ["zone_name", "Palencia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 163], ["zone_code", "Pontevedra"], ["zone_name", "Pontevedra"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 164], ["zone_code", "Salamanca"], ["zone_name", "Salamanca"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 165], ["zone_code", "Santa Cruz de Tenerife"], ["zone_name", "Santa Cruz de Tenerife"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 166], ["zone_code", "Segovia"], ["zone_name", "Segovia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 167], ["zone_code", "Sevilla"], ["zone_name", "Sevilla"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 168], ["zone_code", "Soria"], ["zone_name", "Soria"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 169], ["zone_code", "Tarragona"], ["zone_name", "Tarragona"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 170], ["zone_code", "Teruel"], ["zone_name", "Teruel"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 171], ["zone_code", "Toledo"], ["zone_name", "Toledo"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 172], ["zone_code", "Valencia"], ["zone_name", "Valencia"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 173], ["zone_code", "Valladolid"], ["zone_name", "Valladolid"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 174], ["zone_code", "Vizcaya"], ["zone_name", "Vizcaya"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 175], ["zone_code", "Zamora"], ["zone_name", "Zamora"]] SQL (0.1ms) INSERT INTO "geo_zones" ("created_at", "geo_country_id", "id", "zone_code", "zone_name") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["geo_country_id", 195], ["id", 176], ["zone_code", "Zaragoza"], ["zone_name", "Zaragoza"]]  (2.5ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20110609150135')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201729'  (0.0ms) begin transaction ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'default' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Default"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "default"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'home' LIMIT 1 ContactPurpose Load (0.2ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Home"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "home"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'work' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Work"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "work"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'billing' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Billing"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "billing"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'temporary' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Temporary"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "temporary"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'tax_reporting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Tax Reporting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "tax_reporting"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'recruiting' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Recruiting"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "recruiting"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'employment_offer' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Employment Offer"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employment_offer"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'business' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Business"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "business"], ["lft", 17], ["parent_id", nil], ["rgt", 18], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'personal' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Personal"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "personal"], ["lft", 19], ["parent_id", nil], ["rgt", 20], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'fax' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Fax"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "fax"], ["lft", 21], ["parent_id", nil], ["rgt", 22], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'mobile' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Mobile"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "mobile"], ["lft", 23], ["parent_id", nil], ["rgt", 24], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'emergency' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Emergency"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "emergency"], ["lft", 25], ["parent_id", nil], ["rgt", 26], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'shipping' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Shipping"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "shipping"], ["lft", 27], ["parent_id", nil], ["rgt", 28], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" WHERE "contact_purposes"."internal_identifier" = 'other' LIMIT 1 ContactPurpose Load (0.1ms) SELECT "contact_purposes".* FROM "contact_purposes" ORDER BY "contact_purposes"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "contact_purposes" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Other"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "other"], ["lft", 29], ["parent_id", nil], ["rgt", 30], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles"  SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('admin') LIMIT 1 SQL (0.3ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Admin"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "admin"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] SecurityRole Exists (0.1ms) SELECT 1 AS one FROM "security_roles" WHERE LOWER("security_roles"."internal_identifier") = LOWER('employee') LIMIT 1 SQL (0.1ms) INSERT INTO "security_roles" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Employee"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "employee"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] SQL (0.4ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Shortcut"], ["internal_identifier", "desktop_shortcut"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["default_pref_option_id", nil], ["description", "Autoload Application"], ["internal_identifier", "autoload_application"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Yes"], ["internal_identifier", "yes"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["value", "yes"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "No"], ["internal_identifier", "no"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["value", "no"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "TrueNorth Logo"], ["internal_identifier", "truenorth_logo_background"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["value", "truenorth.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["value", "blue.gif"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Grey Gradient"], ["internal_identifier", "grey_gradient_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["value", "gradient.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Purple"], ["internal_identifier", "purple_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["value", "purple.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Planet"], ["internal_identifier", "planet_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["value", "planet.jpg"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Portablemind"], ["internal_identifier", "portablemind_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["value", "portablemind.png"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Access"], ["internal_identifier", "access_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["value", "ext-all-access.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Gray"], ["internal_identifier", "gray_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["value", "ext-all-gray.css"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["value", "ext-all.css"]]  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (3, 2)  (0.3ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-04-22 15:55:25.632467' WHERE "preference_types"."id" = 3  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 1)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (4, 2)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 2, "updated_at" = '2013-04-22 15:55:25.635394' WHERE "preference_types"."id" = 4  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 4)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 3)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 5)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 6)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 7)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (1, 8)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 3, "updated_at" = '2013-04-22 15:55:25.637975' WHERE "preference_types"."id" = 1  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 9)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 10)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 11)  (0.1ms) UPDATE "preference_types" SET "default_pref_option_id" = 11, "updated_at" = '2013-04-22 15:55:25.639781' WHERE "preference_types"."id" = 2 NoteType Load (0.1ms) SELECT "note_types".* FROM "note_types" ORDER BY "note_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "note_types" ("created_at", "description", "external_identifier", "internal_identifier", "lft", "note_type_record_id", "note_type_record_type", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Basic Note"], ["external_identifier", nil], ["internal_identifier", "basic_note"], ["lft", 1], ["note_type_record_id", nil], ["note_type_record_type", nil], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('shared_notesgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Notes"], ["icon", "icon-documents"], ["internal_identifier", "shared_notes_grid"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["xtype", "shared_notesgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('shared_notesgrid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('shared_notes_grid') AND "widgets"."id" != 1) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('application_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Application Management"], ["icon", "icon-user"], ["internal_identifier", "application_management"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["xtype", "controlpanel_userapplicationmgtpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('controlpanel_userapplicationmgtpanel') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('application_management') AND "widgets"."id" != 2) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('role_management') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Role Management"], ["icon", "icon-user"], ["internal_identifier", "role_management"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["xtype", "usermanagement_rolemanagementpanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_rolemanagementpanel') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('role_management') AND "widgets"."id" != 3) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "User Personal Info"], ["icon", "icon-user"], ["internal_identifier", "user_personal_info"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["xtype", "usermanagement_personalinfopanel"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('usermanagement_personalinfopanel') AND "widgets"."id" != 4) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('user_personal_info') AND "widgets"."id" != 4) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "User Management"], ["icon", "icon-user"], ["internal_identifier", "user_management"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.UserManagement"], ["shortcut_id", "user-management-win"], ["type", "DesktopApplication"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["xtype", nil]] SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]] SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 2], ["preferenced_record_type", "Application"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 3)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 4)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 2)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (2, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.UserManagement' AND "applications"."id" != 2) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('user_management') AND "applications"."id" != 2 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Scaffold"], ["icon", "icon-data"], ["internal_identifier", "scaffold"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.Scaffold"], ["shortcut_id", "scaffold-win"], ["type", "DesktopApplication"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["xtype", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 3], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.Scaffold' AND "applications"."id" != 3) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('scaffold') AND "applications"."id" != 3 AND "applications"."type" = 'DesktopApplication') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Party Contact Management"], ["icon", "icon-grid"], ["internal_identifier", "party_contact_management"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["xtype", "contactmechanismgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('contactmechanismgrid') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_contact_management') AND "widgets"."id" != 5) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('partygrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Party Management"], ["icon", "icon-grid"], ["internal_identifier", "party_management_widget"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["xtype", "partygrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."xtype") = LOWER('partygrid') AND "widgets"."id" != 6) LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE (LOWER("widgets"."internal_identifier") = LOWER('party_management_widget') AND "widgets"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.2ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "CRM"], ["icon", "icon-user"], ["internal_identifier", "crm"], ["javascript_class_name", nil], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["xtype", nil]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 5)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 6)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 1) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["current_first_name", "Admin"], ["current_last_name", "Istrator"], ["current_middle_name", nil], ["current_nickname", nil], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", nil], ["encrypted_ssn", nil], ["gender", "m"], ["height", nil], ["marital_status", nil], ["mothers_maiden_name", nil], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["weight", nil]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "Admin Istrator"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_first_name" = 'Admin', "current_last_name" = 'Istrator', "gender" = 'm', "created_at" = '2013-04-22 15:55:25.909391', "updated_at" = '2013-04-22 15:55:25.909391' WHERE "individuals"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1 SQL (0.3ms) INSERT INTO "organizations" ("created_at", "description", "tax_id_number", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "TrueNorth"], ["tax_id_number", nil], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 1], ["business_party_type", "Organization"], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["description", "TrueNorth"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00]]  (0.1ms) UPDATE "organizations" SET "description" = 'TrueNorth', "created_at" = '2013-04-22 15:55:25.947868', "updated_at" = '2013-04-22 15:55:25.947868' WHERE "organizations"."id" = 1 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 Individual Load (0.1ms) SELECT "individuals".* FROM "individuals" WHERE (current_first_name = 'Admin') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('admin@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin@portablemind.com' AND (id != NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["crypted_password", nil], ["email", "admin@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:25 UTC +00:00], ["username", "admin"]] SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] SQL (0.4ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["preference_id", 1], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:26.108772' WHERE "user_preferences"."id" = 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 1], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["preference_id", 2], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 1, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:26.115562' WHERE "user_preferences"."id" = 2  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-04-22 15:55:26.116772' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 1 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 2], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["preference_id", 3], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["user_id", 1]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 2, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:26.140506' WHERE "user_preferences"."id" = 3  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-04-22 15:55:26.141696' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 2 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 1, "updated_at" = '2013-04-22 15:55:26.158322' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 1, "activation_state" = 'active', "salt" = 'bhhZGMp5zpY6aEhxxsY3', "crypted_password" = '$2a$10$/Wuqm5Mcv23/LDqMqVJeg.46fWw8Fq0wzfq5nQIc/CqQYT9GCkGPe', "updated_at" = '2013-04-22 15:55:26.284086' WHERE "users"."id" = 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin@portablemind.com' AND (id != 1) LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 1  (0.1ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (1, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin@portablemind.com' AND (id != 1) LIMIT 1 Organization Load (0.1ms) SELECT "organizations".* FROM "organizations" WHERE (description = 'TrueNorth') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('truenorth@gmail.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('truenorth') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth@gmail.com' AND (id != NULL) LIMIT 1 SQL (0.3ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", nil], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["crypted_password", nil], ["email", "truenorth@gmail.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", nil], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", nil], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["username", "truenorth"]] SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["preference_id", 4], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:26.358907' WHERE "user_preferences"."id" = 4 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 4], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["preference_id", 5], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 4, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:26.366231' WHERE "user_preferences"."id" = 5  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-04-22 15:55:26.367188' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 4 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 5], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["preference_id", 6], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["user_id", 2]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 5, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:26.374764' WHERE "user_preferences"."id" = 6  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-04-22 15:55:26.375645' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 5 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 2, "updated_at" = '2013-04-22 15:55:26.378175' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 6 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 1 AND "parties"."business_party_type" = 'Organization' LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth@gmail.com' AND (id != 2) LIMIT 1  (0.1ms) UPDATE "users" SET "party_id" = 2, "salt" = 'wvZprz6bsKxz8U9j8KSC', "crypted_password" = '$2a$10$Q67Mg8nsXiEhiHhkMGxb1OPYMr7QFT6F1hQ4JIrHcxyTCpRU/b8oK', "updated_at" = '2013-04-22 15:55:26.500525' WHERE "users"."id" = 2  (0.1ms) UPDATE "users" SET "activation_state" = 'active', "updated_at" = '2013-04-22 15:55:26.501862' WHERE "users"."id" = 2 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" INNER JOIN "parties_security_roles" ON "security_roles"."id" = "parties_security_roles"."security_role_id" WHERE "parties_security_roles"."party_id" = 2  (0.0ms) INSERT INTO "parties_security_roles" ("party_id", "security_role_id") VALUES (2, 1) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth@gmail.com' AND (id != 2) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (2, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 1) LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 2) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 3) Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1 Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (5, 4) Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Organizer') AND (user_id = 2) LIMIT 1  (3.2ms) commit transaction  (1.0ms) insert into data_migrations (version) values ('20110728201729')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110728201733'  (0.0ms) begin transaction PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'truenorth_logo_background' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'truenorth_tech.png', "updated_at" = '2013-04-22 15:55:26.535738' WHERE "preference_options"."id" = 3 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'grey_gradient_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 5  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 5 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.1ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 5]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'purple_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 6  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 6 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 6]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'planet_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 7  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 7 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 7]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'portablemind_desktop_background' LIMIT 1 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" INNER JOIN "preference_options_preference_types" ON "preference_types"."id" = "preference_options_preference_types"."preference_type_id" WHERE "preference_options_preference_types"."preference_option_id" = 8  (0.1ms) DELETE FROM "preference_options_preference_types" WHERE "preference_options_preference_types"."preference_option_id" = 8 AND "preference_options_preference_types"."preference_type_id" IN (1) SQL (0.0ms) DELETE FROM "preference_options" WHERE "preference_options"."id" = ? [["id", 8]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'access_extjs_theme' LIMIT 1  (0.2ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-access', "updated_at" = '2013-04-22 15:55:26.548411' WHERE "preference_options"."id" = 9 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'gray_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all-gray', "updated_at" = '2013-04-22 15:55:26.550035' WHERE "preference_options"."id" = 10 PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."internal_identifier" = 'blue_extjs_theme' LIMIT 1  (0.1ms) UPDATE "preference_options" SET "value" = 'extjs:ext-all', "updated_at" = '2013-04-22 15:55:26.551381' WHERE "preference_options"."id" = 11 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Clifton Default"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["value", "clifton:clifton"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Clifton Green"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["value", "clifton:clifton-green"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Clifton Yellow"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["value", "clifton:clifton-yellow"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Clifton Pink"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["value", "clifton:clifton-pink"]] SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Clifton Blue"], ["internal_identifier", "clifton_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["value", "clifton:clifton-blue"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE "preference_types"."internal_identifier" = 'extjs_theme' LIMIT 1  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 12)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 13)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 14)  (0.0ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 15)  (0.1ms) INSERT INTO "preference_options_preference_types" ("preference_type_id", "preference_option_id") VALUES (2, 16) AppContainer Load (0.2ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'AppContainer') Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Desktop') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Desktop') Organizer Load (0.1ms) SELECT "app_containers".* FROM "app_containers" INNER JOIN "valid_preference_types" ON "app_containers"."id" = "valid_preference_types"."preferenced_record_id" WHERE "app_containers"."type" IN ('Organizer') AND "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Organizer') Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "valid_preference_types" ON "applications"."id" = "valid_preference_types"."preferenced_record_id" WHERE "valid_preference_types"."preference_type_id" = 2 AND (valid_preference_types.preferenced_record_type = 'Application') ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 1 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 2 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 4 and preferenced_record_type = 'AppContainer') LIMIT 1 ValidPreferenceType Load (0.1ms) SELECT "valid_preference_types".* FROM "valid_preference_types" WHERE "valid_preference_types"."preference_type_id" = 2 AND (preferenced_record_id = 5 and preferenced_record_type = 'AppContainer') LIMIT 1  (0.9ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20110728201733')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110802200222'  (0.0ms) begin transaction SQL (0.6ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/object:ErpTechSvcs::Sessions::DeleteExpiredSessionsJob\npriority: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Tue, 23 Apr 2013 07:00:01 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]]  (0.8ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110802200222')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110816161238'  (0.0ms) begin transaction Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Audit Log Viewer"], ["icon", "icon-history"], ["internal_identifier", "audit_log_viewer"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.AuditLogViewer"], ["shortcut_id", "audit_log_viewer-win"], ["type", "DesktopApplication"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["xtype", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 5], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.AuditLogViewer' AND "applications"."id" != 5) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('audit_log_viewer') AND "applications"."id" != 5 AND "applications"."type" = 'DesktopApplication') LIMIT 1  (0.8ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20110816161238')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110817160743'  (0.0ms) begin transaction DesktopApplication Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('DesktopApplication') AND "applications"."internal_identifier" = 'file_manager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "File Manager"], ["icon", "icon-folders"], ["internal_identifier", "file_manager"], ["javascript_class_name", "Compass.ErpApp.Desktop.Applications.FileManager"], ["shortcut_id", "file_manager-win"], ["type", "DesktopApplication"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["xtype", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_shortcut') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 3], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'autoload_application') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 4], ["preferenced_record_id", 6], ["preferenced_record_type", "Application"]] Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE ("applications"."javascript_class_name" = 'Compass.ErpApp.Desktop.Applications.FileManager' AND "applications"."id" != 6) LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('file_manager') AND "applications"."id" != 6 AND "applications"."type" = 'DesktopApplication') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 1) LIMIT 1  (0.1ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (1, 6) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('admin@portablemind.com') AND "users"."id" != 1) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('admin') AND "users"."id" != 1) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'admin@portablemind.com' AND (id != 1) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth' LIMIT 1 Desktop Load (0.1ms) SELECT "app_containers".* FROM "app_containers" WHERE "app_containers"."type" IN ('Desktop') AND (user_id = 2) LIMIT 1  (0.0ms) INSERT INTO "app_containers_applications" ("app_container_id", "application_id") VALUES (4, 6) User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."email") = LOWER('truenorth@gmail.com') AND "users"."id" != 2) LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE (LOWER("users"."username") = LOWER('truenorth') AND "users"."id" != 2) LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'truenorth@gmail.com' AND (id != 2) LIMIT 1  (1.0ms) commit transaction  (0.6ms) insert into data_migrations (version) values ('20110817160743')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20110913145838'  (0.1ms) begin transaction CompassAeInstance Exists (0.2ms) SELECT 1 AS one FROM "compass_ae_instances" WHERE "compass_ae_instances"."internal_identifier" IS NULL LIMIT 1  (0.0ms) commit transaction  (0.8ms) insert into data_migrations (version) values ('20110913145838')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111108183739'  (0.0ms) begin transaction SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'admin' LIMIT 1 SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."internal_identifier" = 'employee' LIMIT 1 CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 SQL (0.3ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Create"], ["internal_identifier", "create"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'User' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.4ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "User"], ["capability_type_id", 2], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.3ms) UPDATE "capabilities" SET "capability_resource_type" = 'User', "capability_type_id" = 2, "scope_type_id" = 2, "created_at" = '2013-04-22 15:55:26.735909', "updated_at" = '2013-04-22 15:55:26.735909', "description" = 'Create User' WHERE "capabilities"."id" = 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 1 LIMIT 1 SQL (0.4ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 1], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] SecurityRole Load (0.1ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Delete"], ["internal_identifier", "delete"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'User' AND "capabilities"."capability_type_id" = 3 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "User"], ["capability_type_id", 3], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 3 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.1ms) UPDATE "capabilities" SET "capability_resource_type" = 'User', "capability_type_id" = 3, "scope_type_id" = 2, "created_at" = '2013-04-22 15:55:26.767695', "updated_at" = '2013-04-22 15:55:26.767695', "description" = 'Delete User' WHERE "capabilities"."id" = 2 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 2 LIMIT 1 SQL (0.1ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 2], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "Note"], ["capability_type_id", 2], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.1ms) UPDATE "capabilities" SET "capability_resource_type" = 'Note', "capability_type_id" = 2, "scope_type_id" = 2, "created_at" = '2013-04-22 15:55:26.775548', "updated_at" = '2013-04-22 15:55:26.775548', "description" = 'Create Note' WHERE "capabilities"."id" = 3 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 3], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'create' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 2 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 2 AND "capability_accessors"."capability_id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 2], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 3], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 2]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 SQL (0.1ms) INSERT INTO "capability_types" ("created_at", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "View"], ["internal_identifier", "view"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 4 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "Note"], ["capability_type_id", 4], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 4 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.1ms) UPDATE "capabilities" SET "capability_resource_type" = 'Note', "capability_type_id" = 4, "scope_type_id" = 2, "created_at" = '2013-04-22 15:55:26.789099', "updated_at" = '2013-04-22 15:55:26.789099', "description" = 'View Note' WHERE "capabilities"."id" = 4 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 4 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 4], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'view' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 4 AND "capabilities"."scope_type_id" = 2 LIMIT 1 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 2 AND "capability_accessors"."capability_id" = 4 LIMIT 1 SQL (0.1ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 2], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 4], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 2]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."internal_identifier" = 'delete' LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1 Capability Load (0.1ms) SELECT "capabilities".* FROM "capabilities" WHERE "capabilities"."capability_resource_type" = 'Note' AND "capabilities"."capability_type_id" = 3 AND "capabilities"."scope_type_id" = 2 LIMIT 1 SQL (0.2ms) INSERT INTO "capabilities" ("capability_resource_id", "capability_resource_type", "capability_type_id", "created_at", "description", "scope_query", "scope_type_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["capability_resource_id", nil], ["capability_resource_type", "Note"], ["capability_type_id", 3], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", nil], ["scope_query", nil], ["scope_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] CapabilityType Load (0.1ms) SELECT "capability_types".* FROM "capability_types" WHERE "capability_types"."id" = 3 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."id" = 2 LIMIT 1 ScopeType Load (0.1ms) SELECT "scope_types".* FROM "scope_types" WHERE "scope_types"."internal_identifier" = 'class' LIMIT 1  (0.1ms) UPDATE "capabilities" SET "capability_resource_type" = 'Note', "capability_type_id" = 3, "scope_type_id" = 2, "created_at" = '2013-04-22 15:55:26.800673', "updated_at" = '2013-04-22 15:55:26.800673', "description" = 'Delete Note' WHERE "capabilities"."id" = 5 CapabilityAccessor Load (0.1ms) SELECT "capability_accessors".* FROM "capability_accessors" WHERE "capability_accessors"."capability_accessor_record_type" = 'SecurityRole' AND "capability_accessors"."capability_accessor_record_id" = 1 AND "capability_accessors"."capability_id" = 5 LIMIT 1 SQL (0.2ms) INSERT INTO "capability_accessors" ("capability_accessor_record_id", "capability_accessor_record_type", "capability_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["capability_accessor_record_id", 1], ["capability_accessor_record_type", "SecurityRole"], ["capability_id", 5], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] SecurityRole Load (0.0ms) SELECT "security_roles".* FROM "security_roles" WHERE "security_roles"."id" = ? LIMIT 1 [["id", 1]]  (2.3ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20111108183739')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111108183740'  (0.0ms) begin transaction OrganizerApplication Load (0.2ms) SELECT "applications".* FROM "applications" WHERE "applications"."type" IN ('OrganizerApplication') AND "applications"."internal_identifier" = 'crm' LIMIT 1 Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'party_contact_management' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" INNER JOIN "applications_widgets" ON "applications"."id" = "applications_widgets"."application_id" WHERE "applications_widgets"."widget_id" = 5  (0.2ms) DELETE FROM "applications_widgets" WHERE "applications_widgets"."widget_id" = 5 AND "applications_widgets"."application_id" IN (4) SQL (0.1ms) DELETE FROM "widgets" WHERE "widgets"."id" = ? [["id", 5]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('phonenumbergrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('phone_number_management') LIMIT 1 SQL (0.2ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Phone Number Management"], ["icon", "icon-grid"], ["internal_identifier", "phone_number_management"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["xtype", "phonenumbergrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('emailaddressgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('email_address_management') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Email Address Management"], ["icon", "icon-grid"], ["internal_identifier", "email_address_management"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["xtype", "emailaddressgrid"]] Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('postaladdressgrid') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('postal_address_management') LIMIT 1 SQL (0.1ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Postal Address Management"], ["icon", "icon-grid"], ["internal_identifier", "postal_address_management"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["xtype", "postaladdressgrid"]]  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 7)  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 8)  (0.0ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 9) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (0.9ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20111108183740')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20111111144706'  (0.0ms) begin transaction AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types"  AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.5ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Application"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "application"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Custom Message"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "custom_message"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] AuditLogType Load (0.1ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] SQL (0.3ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" WHERE (not ("lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END AND "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END AND "parent_id" = CASE WHEN id = 2 THEN 1 ELSE "parent_id" END)) ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 3 AND "audit_log_types"."lft" < 4) AND ("audit_log_types".id != 2) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 2]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Successful Logout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_logout"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" WHERE (not ("lft" = CASE WHEN "lft" BETWEEN 4 AND 4 THEN "lft" + 6 - 4 WHEN "lft" BETWEEN 5 AND 6 THEN "lft" + 4 - 5 ELSE "lft" END AND "rgt" = CASE WHEN "rgt" BETWEEN 4 AND 4 THEN "rgt" + 6 - 4 WHEN "rgt" BETWEEN 5 AND 6 THEN "rgt" + 4 - 5 ELSE "rgt" END AND "parent_id" = CASE WHEN id = 3 THEN 1 ELSE "parent_id" END)) ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 5 AND "audit_log_types"."lft" < 6) AND ("audit_log_types".id != 3) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 3]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Successful Login"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "successful_login"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END, "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" WHERE (not ("lft" = CASE WHEN "lft" BETWEEN 6 AND 6 THEN "lft" + 8 - 6 WHEN "lft" BETWEEN 7 AND 8 THEN "lft" + 6 - 7 ELSE "lft" END AND "rgt" = CASE WHEN "rgt" BETWEEN 6 AND 6 THEN "rgt" + 8 - 6 WHEN "rgt" BETWEEN 7 AND 8 THEN "rgt" + 6 - 7 ELSE "rgt" END AND "parent_id" = CASE WHEN id = 4 THEN 1 ELSE "parent_id" END)) ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 7 AND "audit_log_types"."lft" < 8) AND ("audit_log_types".id != 4) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 4]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Accessed Area"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "accessed_area"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END, "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" WHERE (not ("lft" = CASE WHEN "lft" BETWEEN 8 AND 8 THEN "lft" + 10 - 8 WHEN "lft" BETWEEN 9 AND 10 THEN "lft" + 8 - 9 ELSE "lft" END AND "rgt" = CASE WHEN "rgt" BETWEEN 8 AND 8 THEN "rgt" + 10 - 8 WHEN "rgt" BETWEEN 9 AND 10 THEN "rgt" + 8 - 9 ELSE "rgt" END AND "parent_id" = CASE WHEN id = 5 THEN 1 ELSE "parent_id" END)) ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 9 AND "audit_log_types"."lft" < 10) AND ("audit_log_types".id != 5) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 5]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" ORDER BY "audit_log_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "audit_log_types" ("comments", "created_at", "description", "error_code", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "Session Timeout"], ["error_code", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "session_timeout"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]] SQL (0.2ms) UPDATE "audit_log_types" SET "lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END, "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END WHERE "audit_log_types"."id" IN (SELECT "audit_log_types"."id" FROM "audit_log_types" WHERE (not ("lft" = CASE WHEN "lft" BETWEEN 10 AND 10 THEN "lft" + 12 - 10 WHEN "lft" BETWEEN 11 AND 12 THEN "lft" + 10 - 11 ELSE "lft" END AND "rgt" = CASE WHEN "rgt" BETWEEN 10 AND 10 THEN "rgt" + 12 - 10 WHEN "rgt" BETWEEN 11 AND 12 THEN "rgt" + 10 - 11 ELSE "rgt" END AND "parent_id" = CASE WHEN id = 6 THEN 1 ELSE "parent_id" END)) ORDER BY "audit_log_types"."lft") AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 1]] AuditLogType Load (0.1ms) SELECT "audit_log_types".* FROM "audit_log_types" WHERE ("audit_log_types"."lft" >= 11 AND "audit_log_types"."lft" < 12) AND ("audit_log_types".id != 6) ORDER BY "audit_log_types"."lft" AuditLogType Load (0.0ms) SELECT "audit_log_types"."lft", "audit_log_types"."rgt", "audit_log_types"."parent_id" FROM "audit_log_types" WHERE "audit_log_types"."id" = ? LIMIT 1 [["id", 6]]  (1.1ms) commit transaction  (1.1ms) insert into data_migrations (version) values ('20111111144706')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120229160222'  (0.0ms) begin transaction Widget Load (0.1ms) SELECT "widgets".* FROM "widgets" WHERE "widgets"."internal_identifier" = 'userinfo' LIMIT 1 Application Load (0.1ms) SELECT "applications".* FROM "applications" WHERE "applications"."internal_identifier" = 'crm' LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."xtype") = LOWER('userinfo') LIMIT 1 Widget Exists (0.1ms) SELECT 1 AS one FROM "widgets" WHERE LOWER("widgets"."internal_identifier") = LOWER('userinfo') LIMIT 1 SQL (0.3ms) INSERT INTO "widgets" ("created_at", "description", "icon", "internal_identifier", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["description", "User Info"], ["icon", "icon-user"], ["internal_identifier", "userinfo"], ["updated_at", Mon, 22 Apr 2013 15:55:26 UTC +00:00], ["xtype", "userinfo"]]  (0.1ms) INSERT INTO "applications_widgets" ("application_id", "widget_id") VALUES (4, 10) Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('crm') AND "applications"."id" != 4 AND "applications"."type" = 'OrganizerApplication') LIMIT 1  (0.9ms) commit transaction  (0.7ms) insert into data_migrations (version) values ('20120229160222')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120405193721'  (0.0ms) begin transaction  (0.0ms) commit transaction  (0.9ms) insert into data_migrations (version) values ('20120405193721')  (0.1ms) select count(*) as num_rows from data_migrations where version = '20120411180756'  (0.0ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (4.7ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["weight", 180]] SQL (0.3ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]]  (0.3ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:55:27.367794', "updated_at" = '2013-04-22 15:55:27.367794' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", "party 1"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user1@portablemind.com') LIMIT 1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin1') LIMIT 1 User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user1@portablemind.com' AND (id != NULL) LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.5ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["crypted_password", "$2a$10$RmqdCVs70Phy9LX0R3Y1zOdHYR15ayaMn5KrtWjVKLDpR2knWQ33a"], ["email", "user1@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["username", "admin1"]] Rendered /Library/WebServer/Documents/compass_agile_enterprise/erp_tech_svcs/app/views/user_mailer/activation_needed_email.html.erb (2.6ms) Sent mail to user1@portablemind.com (43ms) Date: Mon, 22 Apr 2013 11:55:27 -0400 From: notifications@noreply.com To: user1@portablemind.com Message-ID: <51755d6fa9c31_c21e3fcff4c35ad84541d@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin1

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/

Your username is admin1, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]] SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:27.757236' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:27.762532' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:55:27.763502' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:27.780732' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:55:27.781647' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["user_id", nil]]  (0.2ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:55:27.825158' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-04-22 15:55:27.826720' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.2ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) Rendered inline template (0.2ms) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-04-22 15:55:27.846654' WHERE "users"."id" = 3 Completed 200 OK in 15ms (Views: 1.2ms | ActiveRecord: 0.7ms)  (1.9ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:55:27.853228', "updated_at" = '2013-04-22 15:55:27.853228' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", "party 2"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user2@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin2') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user2@portablemind.com' AND (id != NULL) LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["crypted_password", "$2a$10$sdTZ.Ir3AMVU2LiIsc1M/uWCPHP64UtPWCLrkey4RskiCGc15iMny"], ["email", "user2@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["username", "admin2"]] Sent mail to user2@portablemind.com (7ms) Date: Mon, 22 Apr 2013 11:55:27 -0400 From: notifications@noreply.com To: user2@portablemind.com Message-ID: <51755d6fe602f_c21e3fcff4c35ad8455e6@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin2

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/

Your username is admin2, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:27.954812' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:27.959372' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:55:27.960052' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:27.966032' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:55:27.966778' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:55:27.968804' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-04-22 15:55:27.970010' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Completed 404 Not Found in 0ms  (0.8ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:55:27.980520', "updated_at" = '2013-04-22 15:55:27.980520' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", "party 3"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:27 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user3@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin3') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user3@portablemind.com' AND (id != NULL) LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["crypted_password", "$2a$10$BPivdvgBUTCOc2tFHP42O.3d3kn3lkxH0k3KQLOAZnyav6e3hJRha"], ["email", "user3@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["username", "admin3"]] Sent mail to user3@portablemind.com (7ms) Date: Mon, 22 Apr 2013 11:55:28 -0400 From: notifications@noreply.com To: user3@portablemind.com Message-ID: <51755d701101e_c21e3fcff4c35ad8456b7@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin3

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/

Your username is admin3, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:28.082683' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:28.087250' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:55:28.087941' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:28.094065' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:55:28.094775' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:55:28.096861' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-04-22 15:55:28.098067' WHERE "users"."id" = 3 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} Party Load (0.0ms) SELECT "parties".* FROM "parties" WHERE "parties"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.1ms) SELECT "party_relationships"."id" AS t0_r0, "party_relationships"."description" AS t0_r1, "party_relationships"."party_id_from" AS t0_r2, "party_relationships"."party_id_to" AS t0_r3, "party_relationships"."role_type_id_from" AS t0_r4, "party_relationships"."role_type_id_to" AS t0_r5, "party_relationships"."status_type_id" AS t0_r6, "party_relationships"."priority_type_id" AS t0_r7, "party_relationships"."relationship_type_id" AS t0_r8, "party_relationships"."from_date" AS t0_r9, "party_relationships"."thru_date" AS t0_r10, "party_relationships"."external_identifier" AS t0_r11, "party_relationships"."external_id_source" AS t0_r12, "party_relationships"."created_at" AS t0_r13, "party_relationships"."updated_at" AS t0_r14, "relationship_types"."id" AS t1_r0, "relationship_types"."parent_id" AS t1_r1, "relationship_types"."lft" AS t1_r2, "relationship_types"."rgt" AS t1_r3, "relationship_types"."valid_from_role_type_id" AS t1_r4, "relationship_types"."valid_to_role_type_id" AS t1_r5, "relationship_types"."name" AS t1_r6, "relationship_types"."description" AS t1_r7, "relationship_types"."internal_identifier" AS t1_r8, "relationship_types"."external_identifier" AS t1_r9, "relationship_types"."external_id_source" AS t1_r10, "relationship_types"."created_at" AS t1_r11, "relationship_types"."updated_at" AS t1_r12 FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'customer_of_partner' AND (party_id_from = 1 or party_id_to = 1) SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-04-22 15:55:28.102152' WHERE "users"."id" = 3 Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.2ms)  (2.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:55:28.146850', "updated_at" = '2013-04-22 15:55:28.146850' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 4"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "portablemind_desktop_background"], ["internal_identifier", "protablemind_desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["value", "portablemind.png"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["default_pref_option_id", nil], ["description", "Desktop Background"], ["internal_identifier", "desktop_background"], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "Blue"], ["internal_identifier", "blue_extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["value", "ext-all.css"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["default_pref_option_id", nil], ["description", "Theme"], ["internal_identifier", "extjs_theme"], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1 User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."email") = LOWER('user4@portablemind.com') LIMIT 1 User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('admin4') LIMIT 1 User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."username" = 'user4@portablemind.com' AND (id != NULL) LIMIT 1 Binary data inserted for `string` type on column `crypted_password` SQL (0.4ms) INSERT INTO "users" ("activation_state", "activation_token", "activation_token_expires_at", "created_at", "crypted_password", "email", "failed_logins_count", "last_activity_at", "last_login_at", "last_logout_at", "lock_expires_at", "party_id", "remember_me_token", "remember_me_token_expires_at", "reset_password_email_sent_at", "reset_password_token", "reset_password_token_expires_at", "salt", "security_answer_1", "security_answer_2", "security_question_1", "security_question_2", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["activation_state", "active"], ["activation_token", nil], ["activation_token_expires_at", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["crypted_password", "$2a$10$bX46KMXUfn1UBYc.wMMle.EN55gwqIuQbn5JSHDBXjHD2UNjQLEwO"], ["email", "user4@portablemind.com"], ["failed_logins_count", 0], ["last_activity_at", nil], ["last_login_at", nil], ["last_logout_at", nil], ["lock_expires_at", nil], ["party_id", 4], ["remember_me_token", nil], ["remember_me_token_expires_at", nil], ["reset_password_email_sent_at", nil], ["reset_password_token", nil], ["reset_password_token_expires_at", nil], ["salt", "asdasdastr4325234324sdfds"], ["security_answer_1", nil], ["security_answer_2", nil], ["security_question_1", nil], ["security_question_2", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["username", "admin4"]] Sent mail to user4@portablemind.com (7ms) Date: Mon, 22 Apr 2013 11:55:28 -0400 From: notifications@noreply.com To: user4@portablemind.com Message-ID: <51755d70396ed_c21e3fcff4c35ad845754@adam.local.mail> Subject: An account has been created and needs activation Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Welcome admin4

You have successfully registered, to activate your account follow this link: http://localhost:3000/users/activate/

Your username is admin4, use the password you set during registration to login.

Thanks for joining and have a great day!!

SQL (0.2ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'desktop_background') LIMIT 1 SQL (0.1ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 1], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 3 LIMIT 1 SQL (0.2ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["preference_option_id", 3], ["preference_type_id", 1], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]] SQL (0.2ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["preference_id", 7], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:28.247498' WHERE "user_preferences"."id" = 7 PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 7], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE "preference_options"."id" = 11 LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["preference_id", 8], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 7, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:28.252043' WHERE "user_preferences"."id" = 8  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:55:28.252742' WHERE "app_containers"."type" IN ('Desktop') AND "app_containers"."id" = 7 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", nil]] PreferenceType Load (0.1ms) SELECT "preference_types".* FROM "preference_types" WHERE (internal_identifier = 'extjs_theme') LIMIT 1 SQL (0.0ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", 2], ["preferenced_record_id", 8], ["preferenced_record_type", "AppContainer"]] PreferenceOption Load (0.1ms) SELECT "preference_options".* FROM "preference_options" WHERE (internal_identifier = 'blue_extjs_theme') LIMIT 1 SQL (0.1ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["preference_option_id", 11], ["preference_type_id", 2], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]] SQL (0.1ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["preference_id", 9], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", 3]]  (0.1ms) UPDATE "user_preferences" SET "preferenced_record_id" = 8, "preferenced_record_type" = 'AppContainer', "updated_at" = '2013-04-22 15:55:28.258526' WHERE "user_preferences"."id" = 9  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:55:28.259194' WHERE "app_containers"."type" IN ('Organizer') AND "app_containers"."id" = 8 SQL (0.1ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Mobile"], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", nil]]  (0.1ms) UPDATE "app_containers" SET "user_id" = 3, "updated_at" = '2013-04-22 15:55:28.261123' WHERE "app_containers"."type" IN ('Mobile') AND "app_containers"."id" = 9  (0.0ms) RELEASE SAVEPOINT active_record_1 SQL (0.1ms) UPDATE "users" SET "failed_logins_count" = 0 WHERE "users"."id" = 3 SQL (0.1ms) UPDATE "users" SET "last_login_at" = '2013-04-22 15:55:28.262382' WHERE "users"."id" = 3  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 5"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 6"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 1"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_1"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 2"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_2"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 3"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_3"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 4"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_4"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.3ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 1"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 7"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 8"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 5"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_5"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 6"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_6"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 7"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_7"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 8"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_8"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 2"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["valid_from_role_type_id", 7], ["valid_to_role_type_id", 8]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by ErpApp::Organizer::Crm::RelationshipController#index as HTML Parameters: {"party_id"=>"1", "relationship_type"=>"customer_of_partner"} SQL (0.1ms) UPDATE "users" SET "last_activity_at" = '2013-04-22 15:55:28.366185' WHERE "users"."id" = 3 Completed 200 OK in 37ms (Views: 0.6ms | ActiveRecord: 0.1ms)  (2.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" IS NULL) LIMIT 1 SQL (0.4ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["xtype", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'DesktopApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "DesktopApplication"], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["xtype", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Desktop"], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:55:28.407857', "updated_at" = '2013-04-22 15:55:28.407857' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 9"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 10"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 9"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_9"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 10"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_10"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 11"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_11"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 12"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_12"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 3"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:55:28.430231', "updated_at" = '2013-04-22 15:55:28.430231' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 11"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 12"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 13"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_13"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 14"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_14"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 15"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_15"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 16"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_16"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 4"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.1ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:55:28.449840', "updated_at" = '2013-04-22 15:55:28.449840' WHERE "individuals"."id" = 3 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 3 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 3], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 13"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "Created a new relationship for a test"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 7], ["priority_type_id", nil], ["relationship_type_id", nil], ["role_type_id_from", nil], ["role_type_id_to", nil], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SELECT COUNT(*) FROM "party_relationships" WHERE (party_id_from = 4 or party_id_to = 4)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:55:28.458884', "updated_at" = '2013-04-22 15:55:28.458884' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 14"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 15"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 17"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_17"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 18"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_18"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 19"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_19"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 20"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_20"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 5"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 21"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_21"], ["lft", 9], ["parent_id", nil], ["rgt", 10], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 22"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_22"], ["lft", 11], ["parent_id", nil], ["rgt", 12], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "Test Relationship Type"], ["lft", 3], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["valid_from_role_type_id", 5], ["valid_to_role_type_id", 6]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 16"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 23"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_23"], ["lft", 13], ["parent_id", nil], ["rgt", 14], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 24"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_24"], ["lft", 15], ["parent_id", nil], ["rgt", 16], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 6], ["priority_type_id", nil], ["relationship_type_id", 2], ["role_type_id_from", 7], ["role_type_id_to", 8], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) INSERT INTO "individuals" ("birth_date", "comments", "created_at", "current_first_name", "current_last_name", "current_middle_name", "current_nickname", "current_passport_expire_date", "current_passport_number", "current_personal_title", "current_suffix", "encrypted_ssn", "gender", "height", "marital_status", "mothers_maiden_name", "party_id", "salt", "social_security_number", "ssn_last_four", "temp_ssn", "total_years_work_experience", "updated_at", "weight") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["birth_date", nil], ["comments", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["current_first_name", "John"], ["current_last_name", "Doe"], ["current_middle_name", "Will"], ["current_nickname", "Billy"], ["current_passport_expire_date", nil], ["current_passport_number", nil], ["current_personal_title", nil], ["current_suffix", "Jr"], ["encrypted_ssn", nil], ["gender", "m"], ["height", #], ["marital_status", nil], ["mothers_maiden_name", "Smith"], ["party_id", nil], ["salt", nil], ["social_security_number", nil], ["ssn_last_four", nil], ["temp_ssn", nil], ["total_years_work_experience", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["weight", 180]] SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "John Doe"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.2ms) UPDATE "individuals" SET "current_last_name" = 'Doe', "current_first_name" = 'John', "current_middle_name" = 'Will', "current_suffix" = 'Jr', "current_nickname" = 'Billy', "gender" = 'm', "height" = 6.0, "weight" = 180, "mothers_maiden_name" = 'Smith', "created_at" = '2013-04-22 15:55:28.494239', "updated_at" = '2013-04-22 15:55:28.494239' WHERE "individuals"."id" = 2 Party Load (0.1ms) SELECT "parties".* FROM "parties" WHERE "parties"."business_party_id" = 2 AND "parties"."business_party_type" = 'Individual' LIMIT 1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", 2], ["business_party_type", "Individual"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 17"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "parties" ("business_party_id", "business_party_type", "created_at", "description", "enterprise_identifier", "list_view_image_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["business_party_id", nil], ["business_party_type", nil], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "party 18"], ["enterprise_identifier", nil], ["list_view_image_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 25"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_25"], ["lft", 1], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 26"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_26"], ["lft", 3], ["parent_id", nil], ["rgt", 4], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 27"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_27"], ["lft", 5], ["parent_id", nil], ["rgt", 6], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RoleType Load (0.1ms) SELECT "role_types".* FROM "role_types" ORDER BY "role_types"."rgt" desc LIMIT 1 SQL (0.1ms) INSERT INTO "role_types" ("comments", "created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "parent_id", "rgt", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["comments", "A test role automatically created by Factory Girl"], ["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "test role 28"], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "test_role_28"], ["lft", 7], ["parent_id", nil], ["rgt", 8], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 RelationshipType Load (0.1ms) SELECT "relationship_types".* FROM "relationship_types" ORDER BY "relationship_types"."rgt" desc LIMIT 1 SQL (0.2ms) INSERT INTO "relationship_types" ("created_at", "description", "external_id_source", "external_identifier", "internal_identifier", "lft", "name", "parent_id", "rgt", "updated_at", "valid_from_role_type_id", "valid_to_role_type_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["external_id_source", nil], ["external_identifier", nil], ["internal_identifier", "party relationship 6"], ["lft", 1], ["name", "A relationship type"], ["parent_id", nil], ["rgt", 2], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["valid_from_role_type_id", 3], ["valid_to_role_type_id", 4]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "party_relationships" ("created_at", "description", "external_id_source", "external_identifier", "from_date", "party_id_from", "party_id_to", "priority_type_id", "relationship_type_id", "role_type_id_from", "role_type_id_to", "status_type_id", "thru_date", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", "A Party Relationship"], ["external_id_source", nil], ["external_identifier", nil], ["from_date", nil], ["party_id_from", 4], ["party_id_to", 5], ["priority_type_id", nil], ["relationship_type_id", 1], ["role_type_id_from", 1], ["role_type_id_to", 2], ["status_type_id", nil], ["thru_date", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1 PartyRelationship Load (0.1ms) SELECT "party_relationships".* FROM "party_relationships" WHERE "party_relationships"."id" = ? LIMIT 1 [["id", 1]]  (0.0ms) SAVEPOINT active_record_1 SQL (0.1ms) DELETE FROM "party_relationships" WHERE "party_relationships"."id" = ? [["id", 1]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(DISTINCT "party_relationships"."id") FROM "party_relationships" LEFT OUTER JOIN "relationship_types" ON "relationship_types"."id" = "party_relationships"."relationship_type_id" WHERE "relationship_types"."internal_identifier" = 'Test Relationship Type' AND (party_id_from = 4 or party_id_to = 4)  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE "applications"."javascript_class_name" = 'test' LIMIT 1 Application Exists (0.1ms) SELECT 1 AS one FROM "applications" WHERE (LOWER("applications"."internal_identifier") = LOWER('test') AND "applications"."type" = 'OrganizerApplication') LIMIT 1 SQL (0.3ms) INSERT INTO "applications" ("created_at", "description", "icon", "internal_identifier", "javascript_class_name", "shortcut_id", "type", "updated_at", "xtype") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["icon", nil], ["internal_identifier", "test"], ["javascript_class_name", "test"], ["shortcut_id", nil], ["type", "OrganizerApplication"], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["xtype", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "app_containers" ("created_at", "description", "internal_identifier", "type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["type", "Organizer"], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_options" ("created_at", "description", "internal_identifier", "updated_at", "value") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["description", nil], ["internal_identifier", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["value", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preferences" ("created_at", "preference_option_id", "preference_type_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["preference_option_id", nil], ["preference_type_id", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "preference_types" ("created_at", "default_pref_option_id", "description", "internal_identifier", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["default_pref_option_id", nil], ["description", nil], ["internal_identifier", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) INSERT INTO "user_preferences" ("created_at", "preference_id", "preferenced_record_id", "preferenced_record_type", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["preference_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil], ["updated_at", Mon, 22 Apr 2013 15:55:28 UTC +00:00], ["user_id", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 SQL (0.2ms) INSERT INTO "valid_preference_types" ("preference_type_id", "preferenced_record_id", "preferenced_record_type") VALUES (?, ?, ?) [["preference_type_id", nil], ["preferenced_record_id", nil], ["preferenced_record_type", nil]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction